Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| da2e8372ab | |||
| 65fec1630d | |||
| fd851d8ee4 | |||
| c8f7e646e1 | |||
| dc1cc1bf55 | |||
| 27eda07eaa | |||
| 79e5ab0e9a | |||
| 10a0c6842f | |||
| 2d8edef208 |
@@ -1,53 +1,21 @@
|
||||
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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ export default function LandingPage() {
|
||||
imagePosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Start Chatting Now", href: "https://app.connecthub.io/signup" },
|
||||
{ text: "Start Free Trial", href: "https://app.connecthub.io/signup" },
|
||||
{ text: "Watch Demo", href: "#howItWorks" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -76,11 +76,11 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Crystal Clear Calling", description: "HD voice and video calls with auto-focus. Group calling for up to 100 participants. Screen sharing and recording capabilities included.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-video-call-from-home_58466-15753.jpg", imageAlt: "Video calling interface"
|
||||
title: "Enterprise Security", description: "End-to-end encryption on all messages and calls. SOC 2 compliant infrastructure. Two-factor authentication and advanced privacy controls.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-lock-keyboard_23-2148578048.jpg", imageAlt: "Security and encryption features"
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Enterprise Security", description: "End-to-end encryption on all messages and calls. SOC 2 compliant infrastructure. Two-factor authentication and advanced privacy controls.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-lock-keyboard_23-2148578048.jpg", imageAlt: "Security and encryption features"
|
||||
title: "Crystal Clear Calling", description: "HD voice and video calls with auto-focus. Group calling for up to 100 participants. Screen sharing and recording capabilities included.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-video-call-from-home_58466-15753.jpg", imageAlt: "Video calling interface"
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
|
||||
Reference in New Issue
Block a user