UNPKG

@hykocx/nextjs-start

Version:

A Next.js starter template with Tailwind CSS and custom configuration

16 lines (13 loc) 250 B
export const metadata = { title: "", description: "", }; export default function layout({ children }) { return ( <html> <body className="antialiased bg-black text-white"> {children} </body> </html> ); }