33 lines
609 B
Vue
33 lines
609 B
Vue
<template>
|
|
<slot />
|
|
</template>
|
|
|
|
<style>
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow-x: hidden;
|
|
}
|
|
</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" },
|
|
],
|
|
bodyAttrs: {
|
|
class: "mocha bg-ctp-base text-ctp-text",
|
|
},
|
|
});
|
|
</script>
|