2026-01-10 20:39:17 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="da">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>@ViewData["Title"] - Salon OS</title>
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@@phosphor-icons/web@@2.1.2/src/regular/style.css" />
|
|
|
|
|
<!-- Design System -->
|
2026-01-13 00:09:46 +01:00
|
|
|
<link rel="stylesheet" href="~/css/design-tokens.css">
|
2026-01-10 20:39:17 +01:00
|
|
|
<link rel="stylesheet" href="~/css/design-system.css">
|
|
|
|
|
<link rel="stylesheet" href="~/css/base.css">
|
2026-01-13 00:09:46 +01:00
|
|
|
<link rel="stylesheet" href="~/css/utilities.css">
|
|
|
|
|
<!-- Shared UI Components -->
|
|
|
|
|
<link rel="stylesheet" href="~/css/components.css">
|
2026-01-10 20:39:17 +01:00
|
|
|
<!-- Layout Components -->
|
|
|
|
|
<link rel="stylesheet" href="~/css/app-layout.css">
|
|
|
|
|
<link rel="stylesheet" href="~/css/sidebar.css">
|
|
|
|
|
<link rel="stylesheet" href="~/css/topbar.css">
|
|
|
|
|
<link rel="stylesheet" href="~/css/drawers.css">
|
2026-01-11 11:17:51 +01:00
|
|
|
<link rel="stylesheet" href="~/css/demo-banner.css">
|
2026-01-10 20:39:17 +01:00
|
|
|
<!-- Page Components -->
|
|
|
|
|
<link rel="stylesheet" href="~/css/page.css">
|
|
|
|
|
<link rel="stylesheet" href="~/css/stats.css">
|
2026-01-11 13:11:55 +01:00
|
|
|
<link rel="stylesheet" href="~/css/bookings.css">
|
|
|
|
|
<link rel="stylesheet" href="~/css/notifications.css">
|
2026-01-11 18:18:36 +01:00
|
|
|
<link rel="stylesheet" href="~/css/attentions.css">
|
|
|
|
|
<link rel="stylesheet" href="~/css/waitlist.css">
|
2026-01-11 21:08:56 +01:00
|
|
|
<link rel="stylesheet" href="~/css/tabs.css">
|
2026-01-12 22:10:57 +01:00
|
|
|
<link rel="stylesheet" href="~/css/controls.css">
|
2026-01-11 21:42:24 +01:00
|
|
|
<link rel="stylesheet" href="~/css/cash.css">
|
2026-01-11 22:33:21 +01:00
|
|
|
<link rel="stylesheet" href="~/css/auth.css">
|
|
|
|
|
<link rel="stylesheet" href="~/css/account.css">
|
2026-01-12 22:10:57 +01:00
|
|
|
<link rel="stylesheet" href="~/css/employees.css">
|
2026-01-15 23:29:26 +01:00
|
|
|
<link rel="stylesheet" href="~/css/services.css">
|
2026-01-18 22:50:33 +01:00
|
|
|
<link rel="stylesheet" href="~/css/settings.css">
|
2026-01-10 20:39:17 +01:00
|
|
|
@await RenderSectionAsync("Styles", required: false)
|
|
|
|
|
</head>
|
2026-01-11 11:17:51 +01:00
|
|
|
<body class="has-demo-banner">
|
|
|
|
|
<!-- Demo Mode Banner -->
|
|
|
|
|
<swp-demo-banner>
|
|
|
|
|
<swp-demo-banner-text>
|
|
|
|
|
<i class="ph ph-info"></i>
|
|
|
|
|
<span>Du ser en <strong>demo</strong> af PlanTempus.</span>
|
|
|
|
|
</swp-demo-banner-text>
|
|
|
|
|
<swp-demo-banner-cta>
|
|
|
|
|
<a href="/pricing">
|
|
|
|
|
<span>Opret konto</span>
|
|
|
|
|
<i class="ph ph-arrow-right"></i>
|
|
|
|
|
</a>
|
|
|
|
|
</swp-demo-banner-cta>
|
|
|
|
|
</swp-demo-banner>
|
|
|
|
|
|
2026-01-10 20:39:17 +01:00
|
|
|
<swp-app-layout id="appLayout">
|
|
|
|
|
@await Component.InvokeAsync("SideMenu")
|
|
|
|
|
<partial name="_TopBar" />
|
|
|
|
|
|
|
|
|
|
<swp-main-content>
|
|
|
|
|
@RenderBody()
|
|
|
|
|
</swp-main-content>
|
|
|
|
|
</swp-app-layout>
|
|
|
|
|
|
|
|
|
|
<partial name="_ProfileDrawer" />
|
|
|
|
|
<swp-drawer-overlay id="drawerOverlay"></swp-drawer-overlay>
|
|
|
|
|
|
|
|
|
|
<script type="module" src="~/js/app.js"></script>
|
|
|
|
|
@await RenderSectionAsync("Scripts", required: false)
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|