Moving static files, adding robots, adding sitemap

This commit is contained in:
Firq 2023-03-14 21:49:13 +01:00
parent 82b5709faa
commit 247f07a4e5
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20
107 changed files with 168 additions and 63 deletions
src/pages

View file

@ -4,38 +4,11 @@ import AboutSection from '../layouts/aboutSection.astro'
import ContactSection from '../layouts/contactSection.astro'
import ContactCard from '../components/contactCard.astro'
import contactdata from '../../static/_contactdata.json'
import contactdata from '../../static/assets/data/_contactdata.json'
import CustomFooter from '../layouts/customFooter.astro'
import TechnologyCard from '../components/technologyCard.astro'
const techologydata = [
{
title: 'Astro',
link: 'https://astro.build',
image: 'astro',
},
{
title: 'GitLab',
link: 'https://gitlab.io',
image: 'gitlab',
},
{
title: 'Typescript',
link: 'https://www.typescriptlang.org/',
image: 'typescript',
},
{
title: 'Alpine Linux',
link: 'https://alpinelinux.org/',
image: 'alpine-linux',
},
{
title: 'Ubuntu',
link: 'https://ubuntu.com/',
image: 'ubuntu',
},
]
import technologydata from '../../static/assets/data/_technologydata.json'
const description =
"A summary of the technologies used as well as my contact information. You'll also find disclaimers and thank you notes for the people that helped me."
@ -51,7 +24,7 @@ const description =
general, and first project using Typescript.
</AboutSection>
<AboutSection title="Technologies used">
{techologydata.map((item) => <TechnologyCard {...item} />)}
{technologydata.map((item) => <TechnologyCard {...item} />)}
</AboutSection>
<ContactSection title="Contact me">
{contactdata.map((item) => <ContactCard {...item} />)}