From 1562b3ccfa996fb63accaed01a8df18335946670 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:52:06 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 64 +++++----------------------------------------- 1 file changed, 7 insertions(+), 57 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e70772d..0cfc888 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,69 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } 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 inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Basepex - Enterprise AI Services Platform", - 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"], - }, -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}