From ade6767588da470587f322b61571faaaead43545 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 22:26:39 +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 c613788..9324d0d 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: 'Hill of Hope Renovations | Premium Roofing & Renovations Lehigh Valley', - description: 'Expert roofing and home renovation services in Lehigh Valley. Trusted by homeowners for high-quality, long-lasting results. Get your free estimate today.', + title: 'Webild - Scaling Made Simple', + description: 'Enterprise-grade infrastructure for your digital business.', openGraph: { "title": "Hill of Hope Renovations Inc.", "description": "Premium roofing and renovations across the Lehigh Valley.", -- 2.49.1 From 09ade4b37e2d8b2848a12f12b4afaf6e6fd37a0c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 22:26:40 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 152 +++++++++++++++++------------------------------ 1 file changed, 55 insertions(+), 97 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 87311ff..b4dd18b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,5 @@ -'use client'; - -import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +"use client"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import HeroCentered from '@/components/sections/hero/HeroCentered'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; @@ -8,132 +7,91 @@ import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import { ShieldCheck, MapPin, Star, Percent, Award, CheckCircle, Shield } from 'lucide-react'; +import { Star, Shield, Zap, CheckCircle } from 'lucide-react'; const navItems = [ - { name: 'Home', id: '/' } + { name: "Home", id: "/" }, + { name: "Contact", id: "/contact" }, + { name: "Services", id: "/services" } ]; export default function Page() { return ( - +
- +
+
+ +
+
+
-
-
- -
-
-
-
-
-- 2.49.1