From 51d0a35fcf85d09b2b3a4fd8d251f0effcce320c Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 15:47:22 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1434 +------------------------------------------- 1 file changed, 12 insertions(+), 1422 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e8030c1..44d1fb7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1436 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Zentra AI - AI Automation Agency | Intelligent Business Process Automation", - description: "Transform your business with Zentra AI's intelligent automation solutions. Reduce costs by 70%, increase efficiency 10x, and unlock exponential growth.", - keywords: "AI automation, business process automation, workflow automation, RPA, enterprise automation, AI solutions", - metadataBase: new URL("https://zentra-ai.com"), - alternates: { - canonical: "https://zentra-ai.com", - }, - openGraph: { - title: "Zentra AI - Intelligent Automation for Enterprise", - description: "Automate complex business processes with enterprise-grade AI automation solutions. Proven ROI within 6 months.", - url: "https://zentra-ai.com", - siteName: "Zentra AI", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiM8HqWFQzisL7lN6RJQJLnwoQ/a-modern-sleek-ai-automation-dashboard-i-1773070846659-f17ca609.png", - alt: "Zentra AI Automation Dashboard", - }, - ], - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Zentra AI - AI Automation Agency", - description: "Enterprise-grade business process automation powered by artificial intelligence.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiM8HqWFQzisL7lN6RJQJLnwoQ/a-modern-sleek-ai-automation-dashboard-i-1773070846659-f17ca609.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Zentra AI - Enterprise Automation Solutions", description: "Automate your business with AI. Zentra AI empowers enterprises to eliminate repetitive tasks, reduce costs by up to 70%, and unlock exponential growth."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -