diff --git a/src/components/navbuttonsTitle.astro b/src/components/navbuttonsTitle.astro new file mode 100644 index 0000000..80901ef --- /dev/null +++ b/src/components/navbuttonsTitle.astro @@ -0,0 +1,31 @@ +--- + +--- + +
+ + + +
+ + + \ No newline at end of file diff --git a/src/layouts/aboutSection.astro b/src/layouts/aboutSection.astro new file mode 100644 index 0000000..e498585 --- /dev/null +++ b/src/layouts/aboutSection.astro @@ -0,0 +1,43 @@ +--- +export interface Props { + title: string; +} + +const { title } = Astro.props; +--- + +
+

{title}

+
+ +
+
+ + \ No newline at end of file diff --git a/src/layouts/hometitle.astro b/src/layouts/hometitle.astro new file mode 100644 index 0000000..f9a5483 --- /dev/null +++ b/src/layouts/hometitle.astro @@ -0,0 +1,31 @@ +--- + +--- + +
+
+ FIRQ FGO SITE + +
+
+ + \ No newline at end of file diff --git a/src/pages/about.astro b/src/pages/about.astro new file mode 100644 index 0000000..9ab3237 --- /dev/null +++ b/src/pages/about.astro @@ -0,0 +1,24 @@ +--- +import Layout from '../layouts/Layout.astro'; +import CustomFooter from '../layouts/customFooter.astro'; +import Hometitle from '../layouts/hometitle.astro'; +import NavbuttonsTitle from '../components/navbuttonsTitle.astro'; +import ContactSection from '../layouts/contactSection.astro'; +import contactdata from '../../static/_contactdata.json' +import ContactCard from '../components/contactCard.astro'; +import AboutSection from '../layouts/aboutSection.astro'; + +--- + + + + This is a small sideproject that I'm creating. It uses Astro for developing and Gitlab for providing the site. + + + {contactdata.map((item) => ())} + + + + + \ No newline at end of file diff --git a/src/pages/index.astro b/src/pages/index.astro index 2dd1787..ca437ab 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,36 +1,15 @@ --- import Layout from '../layouts/Layout.astro'; -import BaseSection from '../layouts/baseSection.astro'; -import TaSection from '../layouts/taSection.astro'; -import ContactSection from '../layouts/contactSection.astro'; import CustomFooter from '../layouts/customFooter.astro'; - -import ServantCard from '../components/servantCard.astro'; -import CeCard from '../components/ceCard.astro'; -import TaCard from '../components/taCard.astro'; -import ContactCard from '../components/contactCard.astro'; - -import servantdata from '../../static/_servantdata.json' -import cedata from '../../static/_cedata.json' -import tadata from '../../static/_tadata.json' -import contactdata from '../../static/_contactdata.json' +import Hometitle from '../layouts/hometitle.astro'; +import NavbuttonsTitle from '../components/navbuttonsTitle.astro'; --- - - - {servantdata.map((item) => ())} - - - {cedata.map((item) => ())} - - - {tadata.map((item) => ())} - - - {contactdata.map((item) => ())} - - + + + +