Adds intro and contacts

This commit is contained in:
2026-01-15 11:02:11 +01:00
parent d7874818a3
commit a6c44cd1e6
10 changed files with 211 additions and 26 deletions

28
app/layouts/default.vue Normal file
View File

@@ -0,0 +1,28 @@
<template>
<slot />
</template>
<style>
html,
body {
margin: 0;
width: 100%;
height: 100%;
}
</style>
<script lang="ts" setup>
import "../assets/global.css";
useHead({
title: "Daniel's portfolio",
meta: [
{
name: "author",
content: "Daniel Svitan (streamer272 / selfsigned-ash)",
},
{ name: "description", content: "Daniel Svitan's portfolio" },
{ name: "keywords", content: "Daniel Svitan portfolio CV" },
],
});
</script>