Merge version_4 into main #8

Merged
bender merged 2 commits from version_4 into main 2026-05-13 18:45:50 +00:00
2 changed files with 67 additions and 4 deletions

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>
);
}

View File

@@ -32,7 +32,7 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Agency", id: "#about" },
{ name: "About", id: "/about" },
{ name: "Services", id: "#features" },
{ name: "Success", id: "#testimonials" },
{ name: "Contact", id: "#contact" },
@@ -47,7 +47,7 @@ export default function LandingPage() {
background={{ variant: "rotated-rays-static" }}
title="What the fuck is this shit"
description="We craft high-performance digital marketing solutions for forward-thinking businesses. Elevate your brand with our data-driven strategies."
buttons={[{ text: "View Our Work", href: "#about" }, { text: "Contact Us", href: "#contact" }]}
buttons={[{ text: "View Our Work", href: "/about" }, { text: "Contact Us", href: "#contact" }]}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-working-together_23-2149622859.jpg", imageAlt: "professional agency workspace Madrid" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AFDRpptPx4buwNV34xBpWy9jNG/tmp/create-an-image-of-a-couple-laughing-1778697896592-a48bf27f.png", imageAlt: "creative marketing team meeting" },
@@ -159,7 +159,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "About Us", href: "#about" }, { label: "Services", href: "#features" }, { label: "Success", href: "#testimonials" }] },
{ 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"
@@ -168,4 +168,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}