project init

This commit is contained in:
headlesdev
2025-05-17 12:35:02 +02:00
parent 5f824a2581
commit 9d6b5b87fb
10 changed files with 1930 additions and 0 deletions

2
app/globals.css Normal file
View File

@@ -0,0 +1,2 @@
@import "tailwindcss";
@plugin "daisyui";

34
app/layout.tsx Normal file
View File

@@ -0,0 +1,34 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "CoreControl",
description: "The dasboard for your server infrastructure",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}

9
app/page.tsx Normal file
View File

@@ -0,0 +1,9 @@
import Image from "next/image";
export default function Home() {
return (
<div>
<h1>CoreControl</h1>
</div>
);
}