diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4291b44..3eed6e6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1428 +1,38 @@ -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"; +'use client'; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], + variable: '--font-inter', + subsets: ['latin'], + weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'], }); export const metadata: Metadata = { - 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, - }, + title: 'Webild', + description: 'Generated by create next app', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children}