Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2c7f08e989 | |||
| b3bad2ae51 | |||
| 87f29b3ea2 | |||
| e7315ae545 | |||
| 7598948a54 | |||
| 1562b3ccfa |
@@ -1,69 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Archivo } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const archivo = Archivo({
|
|
||||||
variable: "--font-archivo",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Basepex - Enterprise AI Services Platform",
|
title: "Basepex - Enterprise AI Services Platform", description: "Deliver AI Receptionist, AI Website Builder, and AI Ad Generator to your clients—fully automated, end-to-end, with zero manual setup required."};
|
||||||
description: "Deliver AI Receptionist, AI Website Builder, and AI Ad Generator to clients. Fully automated, end-to-end services with zero manual setup.",
|
|
||||||
keywords: "AI services, SaaS platform, AI receptionist, website builder, ad generator, enterprise automation",
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Basepex - Enterprise AI Services Platform",
|
|
||||||
description: "Complete AI solution for modern agencies and entrepreneurs",
|
|
||||||
type: "website",
|
|
||||||
siteName: "Basepex",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYAtim1ZLWPTHwy7Ez77qVJ5sx/modern-saas-dashboard-with-multiple-data-1772894463729-4de7a692.png",
|
|
||||||
alt: "Basepex AI Dashboard",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Basepex - AI Services for Enterprise",
|
|
||||||
description: "AI Receptionist, Website Builder & Ad Generator in one platform",
|
|
||||||
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYAtim1ZLWPTHwy7Ez77qVJ5sx/modern-saas-dashboard-with-multiple-data-1772894463729-4de7a692.png"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1431,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user