From 4b1c9d1669eb30a093742f7b5319e66a13428271 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Tue, 2 Jun 2026 12:02:22 -0700 Subject: add sidebar navigation --- src/app/(main)/layout.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/app/(main)/layout.tsx (limited to 'src/app/(main)/layout.tsx') diff --git a/src/app/(main)/layout.tsx b/src/app/(main)/layout.tsx new file mode 100644 index 0000000..df1036f --- /dev/null +++ b/src/app/(main)/layout.tsx @@ -0,0 +1,12 @@ +import { Sidebar } from "../components/sidebar"; + +export default function MainLayout({ children }: { children: React.ReactNode }) { + return ( +
+ +
+ {children} +
+
+ ); +} -- cgit v1.2.3