---
import Layout from '../layouts/Layout.astro';
import BasicSection from '../layouts/basicSection.astro';
import ContactSection from '../layouts/contactSection.astro';
import ContactCard from '../components/contactCard.astro';
import contactdata from '../../static/_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"
},]
---
This is a small sideproject that I'm creating. First time doing webdev in general, and first project using Typescript.
{techologydata.map((item) => ())}
{contactdata.map((item) => ())}