Redesign mostly done
This commit is contained in:
parent
a5521b479e
commit
8d2ef10fb7
24 changed files with 204 additions and 145 deletions
src/pages
|
@ -1,19 +1,20 @@
|
|||
---
|
||||
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';
|
||||
import BasicSection from '../layouts/basicSection.astro';
|
||||
|
||||
import Navbar from '../components/navbar.astro';
|
||||
import NavbarEntry from '../components/navbarEntry.astro';
|
||||
import navdata from '../../static/_navdata.json'
|
||||
|
||||
import ContactSection from '../layouts/contactSection.astro';
|
||||
import ContactCard from '../components/contactCard.astro';
|
||||
import contactdata from '../../static/_contactdata.json'
|
||||
---
|
||||
|
||||
<Layout title="Firq FGO Site">
|
||||
<AboutSection title="About">
|
||||
<Layout title="About" currentpage="about">
|
||||
<BasicSection title="About">
|
||||
This is a small sideproject that I'm creating. It uses Astro for developing and Gitlab for providing the site.
|
||||
</AboutSection>
|
||||
</BasicSection>
|
||||
<ContactSection title="Contact me">
|
||||
{contactdata.map((item) => (<ContactCard {...item}/>))}
|
||||
</ContactSection>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue