importtype { Config } from'tailwindcss'constconfig:Config= { content: ['./app/**/*.{js,ts,jsx,tsx,mdx}',// Note the addition of the `app` directory.'./pages/**/*.{js,ts,jsx,tsx,mdx}','./components/**/*.{js,ts,jsx,tsx,mdx}',// Or if using `src` directory:'./src/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { extend: {}, }, plugins: [],}exportdefault config
importtype { Metadata } from'next'// These styles apply to every route in the applicationimport'./globals.css'exportconstmetadata:Metadata= { title:'Create Next App', description:'Generated by create next app',}exportdefaultfunctionRootLayout({ children,}: { children:React.ReactNode}) {return ( <htmllang="en"> <body>{children}</body> </html> )}