chore: cleanups

This commit is contained in:
2026-02-22 18:20:10 +00:00
parent 1b8d7b1fac
commit 88afc3738f
3 changed files with 0 additions and 20 deletions

View File

View File

@@ -1,15 +0,0 @@
import { Work_Sans } from "next/font/google";
const workSans = Work_Sans({ subsets: ["latin"] });
export default function RootLayout({
children
}: {
children: React.ReactNode
}): JSX.Element {
return (
<html lang="en">
<body className={workSans.className}>{children}</body>
</html>
);
}

View File

@@ -1,5 +0,0 @@
export default function Home(): JSX.Element {
return (
<h1>:/</h1>
);
}