Initial commit - ERP System

This commit is contained in:
root
2026-05-20 18:58:23 +00:00
commit e174936997
2697 changed files with 1628427 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
// /opt/erp-system/app/layout.tsx
import './globals.css';
import type { Metadata } from 'next';
import { Providers } from './providers';
import AppShell from './components/AppShell';
export const metadata: Metadata = {
title: 'ERP Pro Unternehmenssteuerung',
description: 'Professionelles ERP-System für Ticketverwaltung, Kundenkommunikation und Abrechnung.',
icons: { icon: '/favicon.ico' },
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="de">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
</head>
<body className="font-sans antialiased">
<Providers>
<AppShell>{children}</AppShell>
</Providers>
</body>
</html>
);
}