import "./globals.css";
import { Noto_Sans } from "next/font/google";

const NotoSans = Noto_Sans({
  subsets: ["latin"],
  variable: "--font-Noto_Sans",
  weight: ["300", "400", "500", "600", "700", "900"],
});

export const metadata = {
  title: "Young Engineers",
  description: "Young Engineers Portal",
};

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en"
      className={`${NotoSans.variable} scroll-smooth`}>
      <body>
        {children}
      </body>
    </html>
  );
}