feat: bootstrap next.js + tailwind + deps

This commit is contained in:
2026-05-25 13:44:28 +00:00
parent e81ac32982
commit a96a2e60d8
12 changed files with 1564 additions and 0 deletions

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

@@ -0,0 +1,12 @@
@import "tailwindcss";
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
body {
background: var(--background);
color: var(--foreground);
font-family: ui-sans-serif, system-ui, sans-serif;
}

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

@@ -0,0 +1,15 @@
import './globals.css'
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Preis-Tracker',
description: 'Tracking von Produktpreisen bei Amazon, Idealo, Geizhals',
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="de">
<body>{children}</body>
</html>
)
}

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

@@ -0,0 +1,3 @@
export default function Home() {
return <main className="p-8"><h1 className="text-2xl">Preis-Tracker</h1></main>
}