From 7166574432e2fd2ed47fd6ba525bacedebe1fbc5 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 19:31:12 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1388 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1388 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..0e86313 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1388 @@ +import type { Metadata } from "next"; +import { Lenis } from "./providers"; + +export const metadata: Metadata = { + title: "Create Next App", description: "Generated by create next app"}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + + + {children} + + +