first commit

This commit is contained in:
2026-05-25 19:07:12 +07:00
commit f29c67bff4
62 changed files with 13196 additions and 0 deletions
+116
View File
@@ -0,0 +1,116 @@
<script setup>
import { RouterLink, RouterView } from 'vue-router'
</script>
<template>
<div class="app-shell">
<header class="app-header">
<RouterLink to="/" class="brand">Luna Photobooth</RouterLink>
<nav class="app-nav">
<RouterLink to="/" class="nav-link">Home</RouterLink>
<RouterLink to="/capture" class="nav-link">Capture</RouterLink>
</nav>
</header>
<main class="app-main">
<RouterView />
</main>
</div>
</template>
<style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');
:root {
color-scheme: light;
font-family: 'Playfair Display', serif;
--blush-900: #8e2c4a;
--blush-700: #c85a7c;
--blush-500: #f1a3ba;
--blush-300: #f6c7d7;
--blush-150: #fbe6ef;
--cream: #fff7fb;
--ink: #33222b;
--muted: #6f4b58;
--surface: #ffffff;
--soft-shadow: 0 20px 60px rgba(219, 146, 170, 0.25);
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
background: radial-gradient(circle at top, #ffffff 0%, #ffeaf2 40%, #f9cfdc 100%);
color: var(--ink);
}
a {
color: inherit;
text-decoration: none;
}
button {
font-family: inherit;
}
.app-shell {
min-height: 100vh;
display: flex;
flex-direction: column;
padding: 24px 24px 56px;
gap: 24px;
}
.app-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.brand {
font-size: 1.4rem;
font-weight: 700;
letter-spacing: 0.02em;
}
.app-nav {
display: flex;
gap: 16px;
}
.nav-link {
padding: 8px 14px;
border-radius: 999px;
border: 1px solid rgba(200, 90, 124, 0.25);
background: rgba(255, 255, 255, 0.6);
transition: all 0.2s ease;
}
.nav-link.router-link-exact-active,
.nav-link:hover {
background: #fff;
border-color: rgba(200, 90, 124, 0.5);
box-shadow: 0 12px 30px rgba(200, 90, 124, 0.2);
}
.app-main {
flex: 1;
display: flex;
flex-direction: column;
}
@media (max-width: 768px) {
.app-shell {
padding: 20px 16px 48px;
}
.app-header {
flex-direction: column;
align-items: flex-start;
}
}
</style>