From 4d9220e92b020298bb7b570db937ccb2793e466a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 05:57:49 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 774ed98..e220001 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -12,7 +12,7 @@ import { Globe, Zap, Users, Award } from "lucide-react"; export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Services", id: "services" }, + { name: "Services", id: "/services" }, { name: "How It Works", id: "how-it-works" }, { name: "Results", id: "results" }, { name: "About", id: "/about" }, @@ -155,4 +155,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +} -- 2.49.1 From c81a12fd00983a85a4f59b74f95f227117fce671 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 05:57:50 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index c25dfef..0bc7aab 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -11,7 +11,7 @@ import { CheckCircle } from "lucide-react"; export default function ContactPage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Services", id: "services" }, + { name: "Services", id: "/services" }, { name: "How It Works", id: "how-it-works" }, { name: "Results", id: "results" }, { name: "About", id: "/about" }, @@ -115,4 +115,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 5319aef1a3bc091496eae66650b4f9badafc2782 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 05:57:50 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 1442 +------------------------------------------- 1 file changed, 27 insertions(+), 1415 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0cf839d..87b4fca 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1429 +1,42 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Libre_Baskerville } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; +import { Inter_Tight } from "next/font/google"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/providers/themeProvider/components/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", - subsets: ["latin"], - weight: ["400", "700"], +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: "extZura | AI Websites & Automation for Local Businesses", - description: "Get high-converting websites, AI chatbots, and automation systems that attract customers and increase revenue. Trusted by 50+ local businesses.", - keywords: "AI websites, chatbot automation, lead generation, website builder, local business marketing, AI automation services", - openGraph: { - title: "extZura - AI Websites & Automation for Local Businesses", - description: "Transform your business online with AI-powered websites, chatbots, and automation systems.", - siteName: "extZura", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "extZura - AI Websites & Automation", - description: "High-converting websites and AI automation for local businesses", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "extZura - AI Websites & Automation for Local Businesses", description: "Transform your business with AI-powered websites, chatbots, and automation. Attract more customers and increase revenue."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - -