Under construction
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 2m4s

This commit is contained in:
2026-03-12 00:40:43 +01:00
parent 2fe8ece339
commit 0330333840
22 changed files with 422 additions and 44 deletions

View File

@@ -1,8 +1,33 @@
<template>
<head>
<title>Aran Central</title>
</head>
<div>
<NuxtRouteAnnouncer />
<h1>Hi</h1>
<h2>This is website</h2>
<p>Maybe its not my person</p>
<div class="container">
<NuxtPage></NuxtPage>
</div>
</div>
</template>
<script setup lang="ts">
const isDarkMode = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (isDarkMode) {
document.documentElement.setAttribute("data-theme", "dark");
} else {
document.documentElement.setAttribute("data-theme", "light");
}
</script>
<style lang="scss" scoped>
.container {
margin: auto auto;
margin-top: -30px;
padding-left: 20px;
padding-right: 20px;
max-width: 1100px;
}
</style>