This commit is contained in:
yunglocokid
2024-05-11 23:40:53 +07:00
commit 28893e558c
21 changed files with 3549 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import type { Metadata } from "next"
import type { ReactNode } from "react"
import "@app/styles/global.scss"
export const metadata: Metadata = {
title: "Let's Develop!",
description: "FSD Template with Next.js by yunglocokid",
}
export default function RootLayout({
children,
}: Readonly<{
children: ReactNode
}>) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}