Add artist review page and components with basic layout and styling

This commit is contained in:
Esa Kataja
2025-05-04 16:34:23 +03:00
parent 92a192e002
commit 1a20721cbb
12 changed files with 281 additions and 4 deletions
+10 -2
View File
@@ -1,5 +1,13 @@
<template>
<div>
<title>Eurovision 2025</title>
<Header />
<div class="container mx-auto pt-6 p-4 bg-slate-400">
<slot />
</div>
</template>
</template>
<style>
body {
background-color: #aaa;
}
</style>
+6
View File
@@ -0,0 +1,6 @@
<template>
<title>Kirjaudu</title>
<div class="container mx-auto">
<slot />
</div>
</template>