From fac3f376ba0c9dbee4600934b16052059de27745 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 18:08:27 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1415 +------------------------------------------- 1 file changed, 5 insertions(+), 1410 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index eea005c..4690f99 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,17 @@ 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"], -}); export const metadata: Metadata = { - title: "Construction Management PWA | Secure Financial Ledger", description: "Offline-first Progressive Web App with anti-theft checksum validation, immutable audit trails, and material reconciliation for construction site financial transparency.", keywords: "construction management, PWA, offline-first, anti-theft, audit trail, material reconciliation, financial transparency", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Construction Management PWA | Secure Financial Ledger", description: "Enterprise-grade construction management with offline functionality, security-first design, and complete audit trails.", siteName: "ConstructPWA", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/workout-tracker-app_23-2148639062.jpg", alt: "construction management app dashboard interface"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Construction Management PWA | Secure Financial Ledger", description: "Offline-first app with anti-theft validation and immutable audit trails", images: ["http://img.b2bpic.net/free-vector/workout-tracker-app_23-2148639062.jpg"], - }, -}; + title: "ConstructPWA - Secure Construction Management", description: "Enterprise-grade offline-first PWA with anti-theft validation, immutable audit trails, and material reconciliation for construction management."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -