From de11ec2f49a8803ad1e62950ab263404e1c0c7ee Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 02:36:32 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 73caa49..6af63f0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Playfair_Display, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'The House of Dentistry - Perambur, Chennai', - description: 'Expert dental care in Perambur, Chennai. Painless treatments and specialized care for your family.', + title: 'Webild | Digital Innovation', + description: 'Premium digital solutions for growing businesses.', keywords: ["dentist in Perambur, dental clinic Chennai, root canal, teeth whitening, best dental care Perambur, painless dentistry"], }; -- 2.49.1 From 31a115791b2b8a18ab356193a4d0c27f65e54e06 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 02:36:32 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 90 +++++++++--------------------------------------- 1 file changed, 17 insertions(+), 73 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b692bbd..26273c8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,100 +8,44 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import ContactText from '@/components/sections/contact/ContactText'; import FooterBase from '@/components/sections/footer/FooterBase'; +import { ArrowRight, Zap, CheckCircle, Shield, Globe } from 'lucide-react'; -const navItems = [{ name: "Home", id: "/" }]; +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Services", id: "/services" } +]; export default function Page() { return ( - +
- +
- +
- +
- +
- +
- +
- +
); -- 2.49.1