From 8133e0e79422f1d75ee457b29b4a34d2eddff2e4 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 09:38:01 +0000 Subject: [PATCH] Switch to version 1: modified src/app/layout.tsx --- src/app/layout.tsx | 1429 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 1410 insertions(+), 19 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3eed6e6..4291b44 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,38 +1,1428 @@ -'use client'; +import type { Metadata } from "next"; +import { Halant } from "next/font/google"; +import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; +import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; -import type { Metadata } from 'next'; -import { Inter } from 'next/font/google'; -import './globals.css'; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ - variable: '--font-inter', - subsets: ['latin'], - weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'], + variable: "--font-inter", + subsets: ["latin"], +}); + +const poppins = Poppins({ + variable: "--font-poppins", + subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: 'Webild', - description: 'Generated by create next app', + title: "CompanyHub - Internal Knowledge Portal", + description: "Centralized company intranet and knowledge management platform for employees. Access policies, team directory, resources, and support.", + keywords: "intranet, company portal, knowledge base, employee resources, internal network", + openGraph: { + title: "CompanyHub - Company Intranet Portal", + description: "Your one-stop platform for company information, policies, team directory, and resources.", + url: "https://company-hub.internal", + siteName: "CompanyHub", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "CompanyHub - Internal Portal", + description: "Centralized company knowledge and resource platform for all employees", + }, + robots: { + index: true, + follow: true, + }, }; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + {children} +