add catpucchin theme and nuqs for url state

This commit is contained in:
Aman Varshney
2025-04-21 06:43:10 +05:30
parent 0253195969
commit 9f0798d8b6
14 changed files with 347 additions and 170 deletions

View File

@@ -1,9 +1,9 @@
import type { ReactNode } from "react";
import { type ReactNode, Suspense } from "react";
export default function Layout({ children }: { children: ReactNode }) {
return (
<main className="relative z-10 grid min-h-svh grid-cols-1 grid-rows-[auto_1fr_auto] overflow-hidden">
{children}
<Suspense>{children}</Suspense>
</main>
);
}