From 3705539fe718f0dd563668bb5856e7c77b04dba4 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 04:51:40 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1389 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1389 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..e12ed3a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1389 @@ +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import '@/styles/globals.css'; + +const inter = Inter({ subsets: ['latin'] }); + +export const metadata: Metadata = { + title: 'Nike Jordana', + description: 'Experience the perfect fusion of athletic excellence and timeless design.', +}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + {children} +