diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fe28d44..819a3aa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -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"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "ChatFlow - Real-Time Team Communication Platform", description: "ChatFlow is a secure, reliable chat platform for teams. Instant messaging, video calls, file sharing, and seamless collaboration. Start your free trial today.", keywords: "chat platform, team communication, messaging app, video calls, collaboration tools, remote work, real-time messaging", metadataBase: new URL("https://chatflow.example.com"), - alternates: { - canonical: "https://chatflow.example.com"}, - openGraph: { - title: "ChatFlow - Team Communication Made Simple", description: "Connect your team with ChatFlow. Real-time messaging, video calls, and collaboration in one platform.", url: "https://chatflow.example.com", siteName: "ChatFlow", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXBxTU8HJ66ofqmBUSTotzQNam/a-modern-clean-chat-application-interfac-1772729389637-78f8ce94.png", alt: "ChatFlow platform interface"}, - ], - }, - twitter: { - card: "summary_large_image", title: "ChatFlow - Team Communication Platform", description: "Real-time messaging, video calls, and collaboration for modern teams.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXBxTU8HJ66ofqmBUSTotzQNam/a-modern-clean-chat-application-interfac-1772729389637-78f8ce94.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ChatFlow - Real-time Team Communication Platform", description: "Connect instantly with teams and clients worldwide. Real-time messaging, video calls, and collaboration tools built for modern communication."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +