// app/layout.tsx import type { Metadata } from "next"; import { ClerkProvider } from "@clerk/nextjs"; import "./globals.css"; import "../styles/globals.css"; export const metadata: Metadata = { title: "ShopSmart", description: "Multi-store shopping, live better with ShopSmart.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }