Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions src/app/layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,7 @@ export default function RootLayout({ children }) {
href={`${process.env.NEXT_PUBLIC_SITE_URL}/rss/feed.json`}
/>
</head>
<body className="flex h-full flex-col bg-zinc-50 dark:bg-black">
<div className="fixed inset-0 flex justify-center sm:px-8">
<div className="flex w-full max-w-7xl lg:px-8">
<div className="w-full bg-white ring-1 ring-zinc-100 dark:bg-zinc-900 dark:ring-zinc-300/20" />
</div>
</div>
<body className="flex h-full flex-col bg-white dark:bg-zinc-900">
<div className="relative">
<Header />
<main>{children}</main>
Expand All @@ -74,4 +69,4 @@ export default function RootLayout({ children }) {
</body>
</html>
)
}
}
Loading