diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bba78ca..5483c83 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1430 +1,27 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "CompanyHub - Executive Management Platform", - description: "Real-time team management, project tracking, and approval workflows for executive teams. Unified dashboard for better decision-making.", - keywords: "company management, team dashboard, project tracking, executive platform, approval workflow, team analytics", - openGraph: { - title: "CompanyHub - Executive Management Platform", - description: "Transform how you manage your organization with real-time insights and unified team management.", - type: "website", - siteName: "CompanyHub", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AjY9TwW9LDI9FV87nruG66xCNg/a-modern-clean-executive-dashboard-inter-1773107585871-7b95220b.png", - alt: "CompanyHub Executive Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "CompanyHub - Executive Management Platform", - description: "Real-time team status, project tracking, and streamlined approvals for executives.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AjY9TwW9LDI9FV87nruG66xCNg/a-modern-clean-executive-dashboard-inter-1773107585871-7b95220b.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "CompanyHub - Executive Command Center", description: "Real-time insights into team performance, project status, and critical approvals. Manage your organization with powerful analytics and streamlined workflows."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -