diff --git a/src/app/page.tsx b/src/app/page.tsx index 72522f0..8d34a90 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,14 +1,16 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import Link from "next/link"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven"; import SplitAbout from "@/components/sections/about/SplitAbout"; +import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Sparkles, Zap, Heart, DollarSign, Headphones, Shield, CheckCircle } from "lucide-react"; +import { Sparkles, Zap, Heart, DollarSign, Headphones, Shield, CheckCircle, Star, Crown } from "lucide-react"; export default function HomePage() { return ( @@ -29,9 +31,9 @@ export default function HomePage() { brandName="Webild" navItems={[ { name: "Features", id: "features" }, - { name: "Pricing", id: "/pricing" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, + { name: "Pricing", id: "pricing" }, + { name: "About", id: "about" }, + { name: "Contact", id: "contact" }, { name: "Blog", id: "https://blog.webild.io" }, ]} /> @@ -43,13 +45,13 @@ export default function HomePage() { description="Webild empowers businesses to build professional, stunning websites in minutes. No coding required. No expensive designers needed. Just your vision and our platform." tag="Website Builder" tagIcon={Sparkles} - tagAnimation="slide-up" - background={{ variant: "plain" }} + tagAnimation="blur-reveal" + background={{ variant: "sparkles-gradient" }} buttons={[ { text: "Start Building Free", href: "https://app.webild.io/signup" }, { text: "View Demo", href: "https://demo.webild.io" }, ]} - buttonAnimation="slide-up" + buttonAnimation="blur-reveal" mediaItems={[ { imageSrc: @@ -74,10 +76,10 @@ export default function HomePage() {