From dc1cc1bf5569adfd850ee746d309c5a7496b3d00 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 09:32:50 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9e3372e..b10367a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,20 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ConnectHub - Professional Communication Platform", description: "Connect beautifully with seamless chat and HD calling. Enterprise-grade security, crystal-clear quality. Join 500K+ users communicating on ConnectHub.", keywords: "communication platform, chat app, video calling, team messaging, secure messaging, business communication", metadataBase: new URL("https://connecthub.io"), - alternates: { - canonical: "https://connecthub.io" - }, - openGraph: { - title: "ConnectHub - Professional Communication Platform", description: "Experience the next generation of communication with crystal-clear chat and calling.", url: "https://connecthub.io", siteName: "ConnectHub", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/team-working-together-project_23-2149325483.jpg", alt: "ConnectHub communication platform" - } - ] - }, - twitter: { - card: "summary_large_image", title: "ConnectHub - Professional Communication Platform", description: "Connect beautifully with seamless chat and HD calling.", images: ["http://img.b2bpic.net/free-photo/team-working-together-project_23-2149325483.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "ConnectHub - Premium Communication Platform", description: "Experience the next generation of communication with crystal-clear chat and calling. Built for teams, designed for connection."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}