cb150f7a24
- CRM domain modules removed (customers, services, software, calendar, tasks, invoices, leads, finance, etc.)
- DLS branding: package name=lab, logo wordmark, sidebar nav, header CTA
- Tenant layer extended with kind dimension (lab|clinic) + requireTenantKind helper
- Schema rewritten for DLS domain: jobs, job_files, job_status_history, prosthetics, connections, finance_entries, notifications
- Onboarding form: clinic/lab account-type selection + auto-generated memberNumber
- Placeholder routes for jobs/{inbound,outbound,new}, products, finance, connections
- PDF spec + spec.md under belgeler/
- db: lab database + 13 collections + indexes + storage bucket (job-files) provisioned via Appwrite MCP
Ref: belgeler/dls-ui-tasarim.pdf
30 lines
891 B
TypeScript
30 lines
891 B
TypeScript
import type { Metadata } from "next";
|
||
import "./globals.css";
|
||
|
||
import { ThemeProvider } from "@/components/theme-provider";
|
||
import { Toaster } from "@/components/ui/sonner";
|
||
import { SidebarConfigProvider } from "@/contexts/sidebar-context";
|
||
import { inter } from "@/lib/fonts";
|
||
|
||
export const metadata: Metadata = {
|
||
title: "DLS — Kovak Yazılım",
|
||
description: "İşletme yönetim yazılımı — Kovak Yazılım ve Medya Ltd. Şti.",
|
||
};
|
||
|
||
export default function RootLayout({
|
||
children,
|
||
}: {
|
||
children: React.ReactNode;
|
||
}) {
|
||
return (
|
||
<html lang="tr" className={`${inter.variable} antialiased`}>
|
||
<body className={inter.className}>
|
||
<ThemeProvider defaultTheme="system" storageKey="lab-ui-theme">
|
||
<SidebarConfigProvider>{children}</SidebarConfigProvider>
|
||
</ThemeProvider>
|
||
<Toaster richColors closeButton />
|
||
</body>
|
||
</html>
|
||
);
|
||
}
|