📁index.js
import './globals.css'
export const metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
}
export default function RootLayout({ children }) {
return (
<html>
<body>{children}</body>
</html>
)
}
📁page.js
export default function Home() {
return (
<>
Hello, Nextjs!
</>
)
}
📁globals.css
@tailwind base;
@tailwind components;
@tailwind utilities;