From 39568b3be1bdb3171675b74a46dec0b7c3159e2e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 08:59:41 +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 029a52b..6852aff 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Cormorant_Garamond, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'Bizzle Designz | Luxury Brand Design That Converts', - description: 'Boutique creative studio specializing in luxury brand identity, commercial design, and ROI-focused marketing assets.', + title: 'Webild - Modern Web Solutions', + description: 'Professional web development and design services.', keywords: ["brand design, logo designer, brand identity agency, commercial advertising design"], openGraph: { "title": "Bizzle Designz | Luxury Brand Design", From b6bd1c76c6c98dd10b2b8c50e323cca24c061efb Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 08:59:42 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 88 ++++++++---------------------------------------- 1 file changed, 14 insertions(+), 74 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 88b8772..830c3b3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,5 @@ 'use client'; + import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import HeroBillboard from '@/components/sections/hero/HeroBillboard'; @@ -8,100 +9,39 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBase from '@/components/sections/footer/FooterBase'; +import { Star, Shield, Zap, CheckCircle } from 'lucide-react'; export default function Page() { - const navItems = [{ name: "Home", id: "/" }]; + const navItems = [{ name: 'Home', id: '/' }, { name: 'About', id: '/about' }, { name: 'Contact', id: '/contact' }]; + return ( - +
- +
- +
- +
- +
- +
- +
- +
);