Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c8f7e646e1 | |||
| dc1cc1bf55 | |||
| 27eda07eaa | |||
| 79e5ab0e9a | |||
| 10a0c6842f | |||
| 2d8edef208 |
@@ -1,53 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "ConnectHub - Premium Communication Platform", description: "Experience the next generation of communication with crystal-clear chat and calling. Built for teams, designed for connection."};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -76,11 +76,11 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
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,
|
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,
|
id: 4,
|
||||||
|
|||||||
Reference in New Issue
Block a user