From dbae9a139892fc811eef378d95a100ad553e76f7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:05:42 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index aba24fa..32a0eab 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,7 +7,7 @@ const inter = Inter({ }); export const metadata: Metadata = { - title: "Eziam Dental | Premium Dental Care in Pretoria", description: "Experience exceptional dental care in Pretoria. Rated 5.0 by 245 verified patients. Comprehensive dental services at Willows Crossing Shopping Centre."}; + title: "Eziam Dental | Premium Dental Care in Pretoria", description: "Experience exceptional dental care at Eziam Dental in Pretoria. Rated 5.0 by 245 verified patients. Comprehensive services including examinations, cleanings, fillings, and cosmetic dentistry."}; export default function RootLayout({ children, -- 2.49.1 From 17f4d4e3ad315b03a8ee74f67228154350063717 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:05:42 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 128 +++++++++++++++++++++++++---------------------- 1 file changed, 69 insertions(+), 59 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 98528b5..3fc9ec5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { Sparkles, Award, Heart, Zap, Shield, Smile } from "lucide-react"; +import { Sparkles, Smile, Heart, Shield, Zap } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; @@ -16,13 +16,13 @@ export default function LandingPage() { return ( @@ -32,7 +32,7 @@ export default function LandingPage() { navItems={[ { name: "About", id: "about" }, { name: "Services", id: "services" }, - { name: "Testimonials", id: "testimonials" }, + { name: "Reviews", id: "testimonials" }, { name: "Contact", id: "contact" } ]} button={{ text: "Book Now", href: "contact" }} @@ -45,19 +45,19 @@ export default function LandingPage() { tagIcon={Sparkles} tagAnimation="slide-up" title="Your Smile, Our Passion" - description="Transform your smile with Eziam Dental—Pretoria's trusted partner for exceptional dental care. With a perfect 5.0 rating from 245 verified patients, we combine advanced techniques with genuine compassion. Experience clinical excellence in a warm, welcoming environment at Willows Crossing Shopping Centre." - background={{ variant: "sparkles-gradient" }} + description="Experience exceptional dental care in a warm, welcoming environment. At Eziam Dental in Pretoria, we combine advanced techniques with genuine compassion. Trusted by 245+ satisfied patients with a perfect 5.0 rating." + background={{ variant: "radial-gradient" }} buttons={[ - { text: "Schedule Now", href: "#contact" }, + { text: "Schedule Now", href: "contact" }, { text: "Call 067 401 1372", href: "tel:0674011372" } ]} buttonAnimation="slide-up" mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-dentist-examining-female-s-teeth-dentistry_613910-11476.jpg?_wi=1", imageAlt: "Professional dental examination in modern clinic" + imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-dentist-examining-female-s-teeth-dentistry_613910-11476.jpg?_wi=1", imageAlt: "Professional dental examination" }, { - imageSrc: "http://img.b2bpic.net/free-photo/young-redhead-woman-having-examination-while-sitting-dental-chair-clinic_613910-17749.jpg?_wi=1", imageAlt: "Patient receiving expert dental care" + imageSrc: "http://img.b2bpic.net/free-photo/young-redhead-woman-having-examination-while-sitting-dental-chair-clinic_613910-17749.jpg?_wi=1", imageAlt: "Comfortable dental care experience" } ]} mediaAnimation="slide-up" @@ -68,11 +68,11 @@ export default function LandingPage() {
@@ -80,112 +80,122 @@ export default function LandingPage() {
@@ -195,26 +205,26 @@ export default function LandingPage() { columns={[ { title: "Services", items: [ - { label: "Preventive Care", href: "#services" }, - { label: "Restorative Solutions", href: "#services" }, - { label: "Cosmetic Excellence", href: "#services" }, - { label: "Emergency Care", href: "#contact" } + { label: "Dental Examination", href: "#services" }, + { label: "Professional Cleaning", href: "#services" }, + { label: "Teeth Whitening", href: "#services" }, + { label: "Restorative Dentistry", href: "#services" } ] }, { title: "Company", items: [ { label: "About Us", href: "#about" }, - { label: "Our Team", href: "#about" }, - { label: "Patient Stories", href: "#testimonials" }, + { label: "Patient Reviews", href: "#testimonials" }, + { label: "Our Practice", href: "#about" }, { label: "Contact", href: "#contact" } ] }, { title: "Contact", items: [ { label: "Phone: 067 401 1372", href: "tel:0674011372" }, - { label: "Willows Crossing, Die Wilgers, Pretoria", href: "https://maps.google.com/?q=Willows+Crossing+Shopping+Centre+Die+Wilgers+Pretoria" }, - { label: "Monday - Friday: 08:00 - 17:00", href: "#" }, - { label: "Saturday: By Appointment", href: "#contact" } + { label: "Willows Crossing, Die Wilgers", href: "https://maps.google.com/maps/place/Willows+Crossing+Shopping+Centre,+Die+Wilgers,+Pretoria" }, + { label: "Monday - Friday: 9AM - 5PM", href: "#" }, + { label: "Saturday: 10AM - 2PM", href: "#" } ] } ]} -- 2.49.1 From 4b4594d3eca75eb1c0d087a432678dc2d275535c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:05:42 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 73d8d61..d084499 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #f9f6f3;; - --card: #ffffff;; - --foreground: #2b1810;; - --primary-cta: #c97147;; - --secondary-cta: #ffffff;; - --accent: #d4a574;; - --background-accent: #e8d4c4;; */ + /* --background: #f6f0e9;; + --card: #efe7dd;; + --foreground: #2b180a;; + --primary-cta: #d4945e;; + --secondary-cta: #efe7dd;; + --accent: #b8956f;; + --background-accent: #c9a781;; */ - --background: #f9f6f3;; - --card: #ffffff;; - --foreground: #2b1810;; - --primary-cta: #c97147;; + --background: #f6f0e9;; + --card: #efe7dd;; + --foreground: #2b180a;; + --primary-cta: #d4945e;; --primary-cta-text: #f7f6f7;; - --secondary-cta: #ffffff;; + --secondary-cta: #efe7dd;; --secondary-cta-text: #0c1325;; - --accent: #d4a574;; - --background-accent: #e8d4c4;; + --accent: #b8956f;; + --background-accent: #c9a781;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1