Initialize Next.js project with Ant Design and other dependencies

This commit is contained in:
CPTProgrammer
2026-07-06 07:48:07 +08:00
parent 36f809f676
commit 73ab46cff4
6 changed files with 7602 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}
+3
View File
@@ -0,0 +1,3 @@
export default function Page() {
return <h1>Hello, Next.js!</h1>
}