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 +} 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 +} 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} - -