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

This commit is contained in:
Lee
2024-04-14 17:45:04 +01:00
parent 2ca976841f
commit d1f6ff79a7
16 changed files with 5103 additions and 140 deletions

3
src/app/globals.css Normal file
View File

@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

15
src/app/layout.tsx Normal file
View File

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

7
src/app/page.tsx Normal file
View File

@ -0,0 +1,7 @@
export default function Home() {
return (
<main>
<p>hi</p>
</main>
);
}