diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f1de143..f54c820 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,14 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const poppins = Poppins({ + subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Naturopathy Yoga Nairobi | Holistic Wellness & Yoga Classes", description: "Experience natural healing through yoga, reflexology, and naturopathy in Nairobi. Expert instructors offering personalized wellness programs for stress relief, better sleep, and holistic health."}; + title: "Naturopathy Yoga Nairobi | Reflexology & Wellness", description: "Natural healing through yoga, reflexology, and wellness programs in Nairobi. Start your free consultation today."}; export default function RootLayout({ children, @@ -15,25 +16,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - -
- - - - {children} - + + {children} @@ -193,12 +212,15 @@ export default function HomePage() { description="प्राकृतिक उपचार और योग के माध्यम से एक स्वस्थ, संतुलित जीवन की ओर बढ़ें। अभी बुक करें और पहला सेशन के लिए विशेष छूट पाएँ।" buttons={[ { - text: "अभी बुक करें", href: "/booking"}, + text: "Claim Your First Session Discount", href: "/booking" + }, { - text: "फोन करें", href: "tel:+254712345678"}, + text: "फोन करें", href: "tel:+254712345678" + }, ]} background={{ - variant: "radial-gradient"}} + variant: "radial-gradient" + }} useInvertedBackground={false} buttonAnimation="slide-up" /> @@ -208,9 +230,11 @@ export default function HomePage() {