diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 036792b..7eebe13 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,7 +6,7 @@ import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleAp import SplitAbout from "@/components/sections/about/SplitAbout"; import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Heart, Users, DollarSign, Headphones, Zap, Shield } from "lucide-react"; +import { Heart } from "lucide-react"; export default function AboutPage() { return ( @@ -27,9 +27,10 @@ export default function AboutPage() { 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" }, ]} /> @@ -40,28 +41,32 @@ export default function AboutPage() { description="We believe building a website should be simple, affordable, and accessible to everyone. Webild removes the barriers that have traditionally kept small businesses from having an online presence." tag="Our Mission" tagIcon={Heart} - tagAnimation="slide-up" + tagAnimation="entrance-slide" textboxLayout="default" useInvertedBackground={false} imagePosition="right" - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQqtYFHY40Adt38U4P5cSAKG47/an-inspiring-image-of-a-diverse-team-of--1772535453883-47f0bf1c.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQqtYFHY40Adt38U4P5cSAKG47/an-inspiring-image-of-a-diverse-team-of--1772535453883-47f0bf1c.png?_wi=2" imageAlt="Team collaboration and success" bulletPoints={[ { - title: "Affordable Pricing", description: "Get started for free. Upgrade only when you're ready. No hidden fees or long-term contracts.", icon: DollarSign, + title: "Affordable Pricing", description: + "Get started for free. Upgrade only when you're ready. No hidden fees or long-term contracts.", icon: undefined, }, { - title: "Expert Support", description: "24/7 customer support via chat, email, and phone. Our team is always here to help you succeed.", icon: Headphones, + title: "Expert Support", description: + "24/7 customer support via chat, email, and phone. Our team is always here to help you succeed.", icon: undefined, }, { - title: "Lightning Fast", description: "Websites built on Webild load in seconds. We optimize performance so your visitors stay engaged.", icon: Zap, + title: "Lightning Fast", description: + "Websites built on Webild load in seconds. We optimize performance so your visitors stay engaged.", icon: undefined, }, { - title: "Secure & Reliable", description: "Enterprise-grade security with SSL certificates, daily backups, and 99.9% uptime guarantee.", icon: Shield, + title: "Secure & Reliable", description: + "Enterprise-grade security with SSL certificates, daily backups, and 99.9% uptime guarantee.", icon: undefined, }, ]} buttons={[{ text: "Get Started", href: "https://app.webild.io/signup" }]} - buttonAnimation="slide-up" + buttonAnimation="entrance-slide" mediaAnimation="blur-reveal" /> @@ -70,21 +75,24 @@ export default function AboutPage() { @@ -97,4 +105,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +}