✨ Adds intro and contacts
This commit is contained in:
28
app/layouts/default.vue
Normal file
28
app/layouts/default.vue
Normal 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>
|
||||
Reference in New Issue
Block a user