initial commit
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 55s

This commit is contained in:
Lee
2024-04-23 03:22:31 +01:00
parent 926e7d5d0f
commit 82c9bb702a
21 changed files with 3511 additions and 4987 deletions

View File

@ -1,12 +1,12 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { ThemeProvider } from "@/app/components/theme-provider";
const inter = Inter({ subsets: ["latin"] });
import "./globals.css";
import { jetbrainsMono } from "@/app/common/font/font";
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Paste",
description: "Simple Pastebin",
};
export default function RootLayout({
@ -16,7 +16,16 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
<body className={jetbrainsMono.className}>
<ThemeProvider
attribute="class"
defaultTheme="dark"
enableSystem
disableTransitionOnChange
>
{children}
</ThemeProvider>
</body>
</html>
);
}