aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/public/layout.tsx
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-06-07 17:03:02 +0000
committerMohamed Bassem <me@mbassem.com>2025-06-07 18:19:06 +0000
commit3a0f5fa0bbc907e81a0ddf2f8728a36761499928 (patch)
tree603dc4a282f963bd1b9cc9786b8b35ce13499458 /apps/web/app/public/layout.tsx
parentbc65a73872cf0707d2433c289d1f04423325ed95 (diff)
downloadkarakeep-3a0f5fa0bbc907e81a0ddf2f8728a36761499928.tar.zst
feat(ui): Improve the look of the public bookmarks page
Diffstat (limited to 'apps/web/app/public/layout.tsx')
-rw-r--r--apps/web/app/public/layout.tsx9
1 files changed, 2 insertions, 7 deletions
diff --git a/apps/web/app/public/layout.tsx b/apps/web/app/public/layout.tsx
index 4203c44c..b4628e11 100644
--- a/apps/web/app/public/layout.tsx
+++ b/apps/web/app/public/layout.tsx
@@ -1,16 +1,11 @@
-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 className="h-screen items-center justify-center overflow-y-auto bg-muted">
+ <main className="container mt-3">{children}</main>
</div>
);
}