From 9267ea8545c17d1ab4d0d4ce9a6e4d047e045c4d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 21:21:43 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 73 +++++----------------------------------------- 1 file changed, 8 insertions(+), 65 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f9a8e52..fa3b0f6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,76 +1,20 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Core Labs AI - Enterprise AI Growth Consultancy | Fortune 500 Leaders", - description: "Strategic AI partnership for enterprise leaders. 2X ROI guarantee within 12 months. Pilot-first validation, zero disruption, sustained governance. Book a discovery call today.", - keywords: "enterprise AI, AI consultancy, strategic partnership, Fortune 500, ROI guarantee, AI implementation, digital transformation, enterprise technology", - metadataBase: new URL("https://www.corelabsai.com"), - alternates: { - canonical: "https://www.corelabsai.com", - }, - openGraph: { - title: "Core Labs AI - The AI Growth Consultancy for Global Enterprise Leaders", - description: "Engineer measurable revenue streams and optimize mission-critical operations. 2X ROI guarantee. Pilot-first approach.", - url: "https://www.corelabsai.com", - siteName: "Core Labs AI", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXgUxopkYorBfj7IizqokauP27/a-sophisticated-enterprise-ai-operations-1772744461136-67953188.png", - alt: "Enterprise AI Operations Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Core Labs AI - Enterprise AI Growth Consultancy", - description: "Strategic partnership for measurable AI impact. 2X ROI guarantee.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXgUxopkYorBfj7IizqokauP27/a-sophisticated-enterprise-ai-operations-1772744461136-67953188.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Core Labs AI - Enterprise AI Partnership", description: "Partner with Core Labs AI to engineer multi-million dollar revenue streams and optimize mission-critical operations using proprietary AI frameworks."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}