mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2025-07-28 09:04:07 +00:00
Co-authored-by: NeonGamerBot-QK <neon@saahild.com> Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
67 lines
1.2 KiB
Vue
67 lines
1.2 KiB
Vue
<script setup>
|
|
import Backdrop from "./components/Backdrop.vue";
|
|
import Footer from "./components/Footer.vue";
|
|
import Navbar from "./components/Navbar.vue";
|
|
import "./lib/jsscripts/index.ts";
|
|
useHead({
|
|
title: "Saahils Site",
|
|
meta: [
|
|
{
|
|
name: "viewport",
|
|
content: "width=device-width, initial-scale=1.0",
|
|
},
|
|
{
|
|
name: "description",
|
|
content:
|
|
"Saahil's personal website, showcasing his projects, blog, and more.",
|
|
},
|
|
{
|
|
name: "robots",
|
|
content: "noindex, nofollow",
|
|
},
|
|
{
|
|
name: "author",
|
|
content: "Neon",
|
|
},
|
|
{
|
|
name: "charset",
|
|
content: "UTF-8",
|
|
},
|
|
{
|
|
name: "keywords",
|
|
content: "neon, saahil, portfolio",
|
|
},
|
|
{
|
|
name: "color-scheme",
|
|
content: "dark",
|
|
},
|
|
],
|
|
noscript: [
|
|
{
|
|
children: `
|
|
<meta http-equiv="refresh" content="0; url=https://saahild.com/retro" />
|
|
`,
|
|
},
|
|
],
|
|
});
|
|
</script>
|
|
<script></script>
|
|
<!-- <script
|
|
defer
|
|
src="https://cloud.umami.is/script.js"
|
|
data-website-id=""
|
|
></script> -->
|
|
<style>
|
|
body,
|
|
html {
|
|
font-family: "Poppins";
|
|
}
|
|
</style>
|
|
<template>
|
|
<div>
|
|
<Navbar />
|
|
<Backdrop />
|
|
<router-view />
|
|
<Footer />
|
|
</div>
|
|
</template>
|