From dee7262bf5b4147903d5879298320f4c685c5f2f Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:03:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2810 -------------------------------------------- 1 file changed, 2810 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3c1afaf..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2810 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - -export const metadata: Metadata = { - title: "NextZura | AI Websites & Automation for Local Business Growth", - description: "NextZura helps local businesses grow online with high-converting websites, lead generation systems, and AI chatbots. Get more customers, more calls, more revenue.", - keywords: "website design, lead generation, AI chatbots, business automation, local business growth, conversion optimization", - metadataBase: new URL("https://nextzura.com"), - alternates: { - canonical: "https://nextzura.com", - }, - openGraph: { - title: "NextZura | AI Websites & Automation for Local Business Growth", - description: "Transform your business online with AI-powered websites and automation systems designed to attract more customers.", - url: "https://nextzura.com", - siteName: "NextZura", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-vector/find-your-time-travel-landing-page-with-photo_23-2148300336.jpg", - alt: "NextZura AI website automation platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "NextZura | AI Websites & Automation for Local Business Growth", - description: "Transform your business online with AI-powered websites and automation systems.", - images: ["http://img.b2bpic.net/free-vector/find-your-time-travel-landing-page-with-photo_23-2148300336.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -