Add src/app/about/page.tsx

This commit is contained in:
2026-05-13 18:45:46 +00:00
parent 033d1c70a8
commit 07f86e84a9

63
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,63 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Users } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="largeSizeMediumTitles"
background="floatingGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "About", id: "/about" },
{ name: "Services", id: "/#features" },
{ name: "Success", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
]}
brandName="MadridMark"
button={{ text: "Get Started", href: "/#contact" }}
/>
</div>
<div id="about-section" data-section="about-section">
<TestimonialAboutCard
tag="Our Story"
title="Pioneering Digital Excellence in Madrid"
description="Founded in the heart of Madrid, we have spent the last decade perfecting the art of digital growth."
subdescription="Our commitment is to empower local businesses with global perspectives, driving measurable transformation through innovation and integrity."
icon={Users}
imageSrc="http://img.b2bpic.net/free-photo/teammates-working-late-office_23-2148991369.jpg"
imageAlt="Team collaborating in office"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "About Us", href: "/about" }, { label: "Services", href: "/#features" }, { label: "Success", href: "/#testimonials" }] },
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Use", href: "#" }, { label: "Contact", href: "/#contact" }] }
]}
logoText="MadridMark"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}