aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/public/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app/public/layout.tsx')
-rw-r--r--apps/web/app/public/layout.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/web/app/public/layout.tsx b/apps/web/app/public/layout.tsx
new file mode 100644
index 00000000..4203c44c
--- /dev/null
+++ b/apps/web/app/public/layout.tsx
@@ -0,0 +1,16 @@
+import KarakeepLogo from "@/components/KarakeepIcon";
+
+export default function PublicLayout({
+ children,
+}: {
+ children: React.ReactNode;
+}) {
+ return (
+ <div className="h-screen flex-col overflow-y-auto bg-muted">
+ <header className="sticky left-0 right-0 top-0 z-50 flex h-16 items-center justify-between overflow-x-auto overflow-y-hidden bg-background p-4 shadow">
+ <KarakeepLogo height={38} />
+ </header>
+ <main className="container mx-3 mt-3 flex-1">{children}</main>
+ </div>
+ );
+}