2024-12-16 22:55:58 +08:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width" />
|
2024-12-16 22:57:11 +08:00
|
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
2024-12-16 22:55:58 +08:00
|
|
|
<title>Solsynth LLC</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="navbar backdrop-blur fixed top-0 left-0 right-0 z-10">
|
|
|
|
<div class="px-5 flex-1">
|
|
|
|
<div class="flex-1">
|
|
|
|
<a class="btn btn-ghost text-xl">Solsynth</a>
|
|
|
|
</div>
|
|
|
|
<div class="flex-none">
|
|
|
|
<ul class="menu menu-horizontal px-1">
|
|
|
|
<li><a>Link</a></li>
|
|
|
|
<li>
|
|
|
|
<details>
|
|
|
|
<summary>Parent</summary>
|
|
|
|
<ul class="bg-base-100 rounded-t-none p-2">
|
|
|
|
<li><a>Link 1</a></li>
|
|
|
|
<li><a>Link 2</a></li>
|
|
|
|
</ul>
|
|
|
|
</details>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<main class="mt-[68px]">
|
|
|
|
<slot />
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
</style>
|