mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-12 06:55:01 +02:00
disable helmet and add esbuild
This commit is contained in:
parent
282203d9f2
commit
3c69acaab7
12 changed files with 139 additions and 68 deletions
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue