24 lines
481 B
TypeScript
24 lines
481 B
TypeScript
import type { Metadata } from "next";
|
|
import { DM_Sans } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const sans = DM_Sans({
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Hackathon Template",
|
|
description: "Generated by create next app",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" className={sans.className}>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|