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", 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 ( - +
- +
- +
- +
- +
- +
- +
- +
);