Add src/app/about/page.tsx

This commit is contained in:
2026-03-05 02:15:38 +00:00
parent d510eefbfe
commit 0defcc3ca7

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

@@ -0,0 +1,124 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import TextAbout from "@/components/sections/about/TextAbout";
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
import TeamCardSix from "@/components/sections/team/TeamCardSix";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Users } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="medium"
background="circleGradient"
cardStyle="outline"
primaryButtonStyle="shadow"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Thor Creations"
navItems={[
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Request a Quote", href: "/quote" }}
animateOnLoad={true}
/>
</div>
<div id="hero" data-section="hero">
<TextAbout
tag="Our Story"
title="Thor Creations: Where Family Values Meet Creative Excellence"
useInvertedBackground={false}
buttons={[
{ text: "Get Started", href: "/quote" },
]}
buttonAnimation="slide-up"
ariaLabel="About Thor Creations Hero"
/>
</div>
<div id="about-content" data-section="about-content">
<MetricSplitMediaAbout
tag="Family-Owned Business"
title="Built on Passion, Quality, and Customer Success"
description="Thor Creations was founded on the principle that exceptional creative solutions should be accessible to every business, regardless of size. As a family-owned company, we bring personal attention, integrity, and dedication to every project we undertake. Our team combines years of industry experience with a genuine commitment to seeing our clients succeed."
metrics={[
{ value: "15+", title: "Years in the Industry" },
{ value: "500+", title: "Happy Clients" }
]}
imageSrc="http://img.b2bpic.net/free-photo/happy-young-colleagues-office-coworking_171337-17719.jpg"
imageAlt="Thor Creations Team"
mediaAnimation="slide-up"
useInvertedBackground={true}
ariaLabel="About Thor Creations Content"
/>
</div>
<div id="team" data-section="team">
<TeamCardSix
members={[
{
id: "1", name: "Thor Petersen", role: "Founder & Creative Director", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Thor Petersen"
},
{
id: "2", name: "Elena Petersen", role: "Operations Manager", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", imageAlt: "Elena Petersen"
},
{
id: "3", name: "Marcus Johnson", role: "Lead Designer", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "Marcus Johnson"
},
{
id: "4", name: "Sophia Chen", role: "Production Specialist", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=1", imageAlt: "Sophia Chen"
},
]}
gridVariant="bento-grid"
animationType="slide-up"
title="Meet Our Team"
description="Talented professionals dedicated to delivering exceptional results for every client."
textboxLayout="default"
useInvertedBackground={false}
tag="Our Team"
tagIcon={Users}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Let's Connect"
title="Ready to Work With Us?"
description="We'd love to hear about your project and discuss how Thor Creations can help bring your vision to life."
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/young-beautiful-female-support-phone-operator-speaking-consulting-office_176420-949.jpg"
imageAlt="Contact Thor Creations"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email address"
buttonText="Request a Quote"
termsText="We respect your privacy. We'll be in touch soon."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="THOR CREATIONS"
leftLink={{ text: "Privacy Policy", href: "/privacy" }}
rightLink={{ text: "Terms of Service", href: "/terms" }}
ariaLabel="Thor Creations Footer"
/>
</div>
</ThemeProvider>
);
}