Merge version_2 into main #2
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -220,7 +220,7 @@ export default function LandingPage() {
|
||||
tag="Get in Touch"
|
||||
tagIcon={Mail}
|
||||
title="Ready to Transform Your Team Communication?"
|
||||
description="Join thousands of teams already using ChatFlow. Start your free 14-day trial today with no credit card required."
|
||||
description="Join 5,000+ teams already using ChatFlow. Start your free 14-day trial today with no credit card required."
|
||||
buttons={[
|
||||
{ text: "Start Free Trial", href: "#" },
|
||||
{ text: "Schedule Demo", href: "#" },
|
||||
|
||||
Reference in New Issue
Block a user