6 Commits

Author SHA1 Message Date
7a11467c3a Merge version_2 into main
Merge version_2 into main
2026-03-04 13:43:34 +00:00
65201cbcfe Update src/app/page.tsx 2026-03-04 13:43:30 +00:00
bbe5da5906 Update src/app/about/page.tsx 2026-03-04 13:43:29 +00:00
cd1156e44f Merge version_2 into main
Merge version_2 into main
2026-03-04 13:42:28 +00:00
87ca8db307 Update src/app/page.tsx 2026-03-04 13:42:24 +00:00
a8ad68a6c1 Add src/app/about/page.tsx 2026-03-04 13:42:23 +00:00
2 changed files with 96 additions and 3 deletions

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

@@ -0,0 +1,93 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Sparkles } from 'lucide-react';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="smallMedium"
sizing="mediumSizeLargeTitles"
background="blurBottom"
cardStyle="subtle-shadow"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Elevate"
navItems={[
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "work" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Get Started", href: "#contact" }}
animateOnLoad={true}
/>
</div>
<div id="about" data-section="about">
<MetricSplitMediaAbout
tag="Our Story"
tagIcon={Sparkles}
tagAnimation="slide-up"
title="We help marketing teams scale their impact"
description="At Elevate, we believe that great marketing is the intersection of strategy, creativity, and data. Since our founding, we've worked with over 180 companies to transform their brands and drive meaningful growth. Our team combines deep industry expertise with a passion for results."
metrics={[
{ value: "10+", title: "Years in the Industry" },
{ value: "180+", title: "Successful Projects" }
]}
imageSrc="http://img.b2bpic.net/free-photo/multi-ethnic-business-team-sitting-table-office-center-speaking-about-project-meeting-broadroom_482257-5077.jpg?_wi=2"
imageAlt="Elevate team collaborating on strategy"
useInvertedBackground={false}
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Elevate"
columns={[
{
items: [
{ label: "Services", href: "#services" },
{ label: "Portfolio", href: "#work" },
{ label: "Team", href: "#team" }
]
},
{
items: [
{ label: "About Us", href: "/about" },
{ label: "Case Studies", href: "#work" },
{ label: "Blog", href: "#" }
]
},
{
items: [
{ label: "Contact", href: "#contact" },
{ label: "hello@elevate.com", href: "#" },
{ label: "+1 (555) 123-4567", href: "#" }
]
},
{
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" }
]
}
]}
/>
</div>
</ThemeProvider>
);
}

View File

@@ -32,7 +32,7 @@ export default function LandingPage() {
navItems={[
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "work" },
{ name: "About", id: "team" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Get Started", href: "#contact" }}
@@ -55,7 +55,7 @@ export default function LandingPage() {
background={{ variant: "radial-gradient" }}
dashboard={{
title: "Campaign Performance Hub", logoIcon: BarChart3,
imageSrc: "http://img.b2bpic.net/free-photo/multi-ethnic-business-team-sitting-table-office-center-speaking-about-project-meeting-broadroom_482257-5077.jpg", searchPlaceholder: "Search campaigns...", buttons: [
imageSrc: "http://img.b2bpic.net/free-photo/multi-ethnic-business-team-sitting-table-office-center-speaking-about-project-meeting-broadroom_482257-5077.jpg?_wi=1", searchPlaceholder: "Search campaigns...", buttons: [
{ text: "Analytics", href: "#" },
{ text: "Reports", href: "#" }
],
@@ -283,7 +283,7 @@ export default function LandingPage() {
},
{
items: [
{ label: "About Us", href: "#" },
{ label: "About Us", href: "/about" },
{ label: "Case Studies", href: "#work" },
{ label: "Blog", href: "#" }
]