disable helmet and add esbuild

This commit is contained in:
Milo Schwartz 2024-10-06 11:13:50 -04:00
parent 282203d9f2
commit 3c69acaab7
No known key found for this signature in database
12 changed files with 139 additions and 68 deletions

View file

@ -1,19 +1,24 @@
import type { Metadata } from "next";
import "./globals.css";
import { Noto_Sans } from "next/font/google";
export const metadata: Metadata = {
title: "Pangolin",
description: "",
};
const inter = Noto_Sans({ subsets: ["latin"] });
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body>{children}</body>
<html>
<body className={`${inter.className}`}>
<main>{children}</main>
</body>
</html>
);
}