Update src/app/about/page.tsx

This commit is contained in:
2026-06-10 16:36:52 +00:00
parent 153f30b32c
commit 8b287949d7

View File

@@ -3,10 +3,10 @@
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import TextAbout from "@/components/sections/about/TextAbout"; import AboutMetric from "@/components/sections/about/AboutMetric";
import TeamCardOne from "@/components/sections/team/TeamCardOne"; import TeamCardOne from "@/components/sections/team/TeamCardOne";
import FooterBase from "@/components/sections/footer/FooterBase"; import FooterBase from "@/components/sections/footer/FooterBase";
import { Sparkles } from "lucide-react"; import { Clock, Sparkles, Star } from "lucide-react";
export default function AboutPage() { export default function AboutPage() {
return ( return (
@@ -18,7 +18,7 @@ export default function AboutPage() {
sizing="medium" sizing="medium"
background="none" background="none"
cardStyle="glass-elevated" cardStyle="glass-elevated"
primaryButtonStyle="metallic" primaryButtonStyle="gradient"
secondaryButtonStyle="glass" secondaryButtonStyle="glass"
headingFontWeight="medium" headingFontWeight="medium"
> >
@@ -26,24 +26,24 @@ export default function AboutPage() {
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="Webild" brandName="Webild"
navItems={[ navItems={[
{ name: "Home", href: "/" }, { name: "Home", id: "/" },
{ name: "Work", href: "/#work" }, { name: "Work", id: "/#work" },
{ name: "Services", href: "/#services" }, { name: "Services", id: "/#services" },
{ name: "About", href: "/about" }, { name: "About", id: "/about" },
{ name: "Contact", href: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
button={{ text: "Get Started", href: "/contact" }} button={{ text: "Get Started", href: "/contact" }}
/> />
<TextAbout <AboutMetric
tag="Our Story"
title="Crafting Digital Excellence Since 2018" title="Crafting Digital Excellence Since 2018"
buttons={[ metrics={[
{ text: "View Our Work", href: "/#work" }, { icon: Clock, label: "Years of Experience", value: "5+" },
{ text: "Contact Us", href: "/contact" } { icon: Sparkles, label: "Projects Completed", value: "100+" },
{ icon: Star, label: "Client Satisfaction", value: "High" }
]} ]}
metricsAnimation="blur-reveal"
useInvertedBackground={false} useInvertedBackground={false}
description="Webild is a passionate team of digital innovators dedicated to building exceptional online experiences. Since 2018, we've partnered with businesses of all sizes to design, develop, and launch websites that not only look stunning but also drive tangible results. We believe in the power of a strong online presence to transform brands and connect them with their audience effectively."
/> />
<TeamCardOne <TeamCardOne