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 ( {children} ) }