Started redesign
This commit is contained in:
parent
217c568ef1
commit
c98c43100e
6 changed files with 169 additions and 27 deletions
src/pages
24
src/pages/about.astro
Normal file
24
src/pages/about.astro
Normal file
|
@ -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';
|
||||
|
||||
---
|
||||
|
||||
<Layout title="Firq FGO Site">
|
||||
<AboutSection title="About">
|
||||
This is a small sideproject that I'm creating. It uses Astro for developing and Gitlab for providing the site.
|
||||
</AboutSection>
|
||||
<ContactSection title="Contact me">
|
||||
{contactdata.map((item) => (<ContactCard {...item}/>))}
|
||||
</ContactSection>
|
||||
|
||||
</Layout>
|
||||
|
||||
<style>
|
||||
</style>
|
|
@ -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';
|
||||
|
||||
---
|
||||
|
||||
<Layout title="Firq TA on Astro">
|
||||
<BaseSection title="Servant Offering">
|
||||
{servantdata.map((item) => (<ServantCard {...item}/>))}
|
||||
</BaseSection>
|
||||
<BaseSection title="CE Offering">
|
||||
{cedata.map((item) => (<CeCard {...item}/>))}
|
||||
</BaseSection>
|
||||
<TaSection title="Completed TAs">
|
||||
{tadata.map((item) => (<TaCard {...item}/>))}
|
||||
</TaSection>
|
||||
<ContactSection title="Contact me">
|
||||
{contactdata.map((item) => (<ContactCard {...item}/>))}
|
||||
</ContactSection>
|
||||
<CustomFooter />
|
||||
<Layout title="Firq FGO Site">
|
||||
<Hometitle>
|
||||
<NavbuttonsTitle></NavbuttonsTitle>
|
||||
</Hometitle>
|
||||
</Layout>
|
||||
|
||||
<style>
|
||||
|
|
34
src/pages/servants.astro
Normal file
34
src/pages/servants.astro
Normal file
|
@ -0,0 +1,34 @@
|
|||
---
|
||||
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'
|
||||
|
||||
---
|
||||
|
||||
<Layout title="Firq TA on Astro">
|
||||
<BaseSection title="Servant Offering">
|
||||
{servantdata.map((item) => (<ServantCard {...item}/>))}
|
||||
</BaseSection>
|
||||
<BaseSection title="CE Offering">
|
||||
{cedata.map((item) => (<CeCard {...item}/>))}
|
||||
</BaseSection>
|
||||
<TaSection title="Completed TAs">
|
||||
{tadata.map((item) => (<TaCard {...item}/>))}
|
||||
</TaSection>
|
||||
<CustomFooter />
|
||||
</Layout>
|
||||
|
||||
<style>
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue