diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 31a0b27..1d14a27 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Franchise Review & Quality Intelligence Dashboard | BI Platform", description: "Real-time sentiment analysis, quality control monitoring, and automated service tickets for multi-location food service franchises. Mobile-responsive BI dashboard.", keywords: "franchise dashboard, review management, quality control, sentiment analysis, BI platform, service tickets", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Franchise Review & Quality Intelligence Dashboard", description: "Monitor customer sentiment, track quality metrics, and manage service tickets across your food service franchise network.", type: "website", siteName: "QC Dashboard"}, - twitter: { - card: "summary_large_image", title: "Franchise BI & Review Management Dashboard", description: "Real-time sentiment analysis and quality control for multi-location food service operations."}, -}; + title: "QC Dashboard", description: "Franchise Review & Quality Intelligence Platform"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -