Initial commit

This commit is contained in:
dk
2026-01-22 22:35:59 +02:00
commit dd3afd6401
301 changed files with 58372 additions and 0 deletions

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

@@ -0,0 +1,158 @@
"use client";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import AboutMetric from '@/components/sections/about/AboutMetric';
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { TrendingUp, Users, Award, Zap, Linkedin, Twitter, Globe, Github } from 'lucide-react';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="background-highlight"
borderRadius="sharp"
contentWidth="mediumLarge"
sizing="largeSmallSizeMediumTitles"
background="floatingGradient"
cardStyle="inset"
primaryButtonStyle="double-inset"
secondaryButtonStyle="solid"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Webild Studio"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Work", id: "/work" },
{ name: "Contact", id: "/contact" }
]}
/>
</div>
<div id="story" data-section="story">
<AboutMetric
title="Founded in 2015 with a vision to transform how brands connect with their audiences. We believe exceptional digital experiences begin with understanding your story, your goals, and your users."
useInvertedBackground="noInvert"
metrics={[
{ icon: TrendingUp, label: "Projects Delivered", value: "250+" },
{ icon: Users, label: "Global Clients", value: "80+" },
{ icon: Award, label: "Design Awards", value: "45" },
{ icon: Zap, label: "Years of Excellence", value: "9+" }
]}
/>
</div>
<div id="team" data-section="team">
<TeamCardTwo
title="Meet the Team"
description="Talented designers, developers, and strategists united by a passion for creating exceptional digital experiences."
tag="Our Experts"
tagIcon={Users}
textboxLayout="default"
animationType="scale-rotate"
gridVariant="uniform-all-items-equal"
useInvertedBackground="invertDefault"
members={[
{
id: "1",
name: "Alexandra Stone",
role: "Creative Director",
description: "Award-winning creative visionary with 12 years of experience leading transformative digital projects for global brands.",
imageSrc: "https://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg",
imageAlt: "Alexandra Stone Creative Director",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" },
{ icon: Twitter, url: "https://twitter.com" }
]
},
{
id: "2",
name: "Elena Rodriguez",
role: "Lead Designer",
description: "Passionate UX/UI designer crafting intuitive experiences that balance aesthetics with functionality. Certified in interaction design.",
imageSrc: "https://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-grey-background_613910-11739.jpg",
imageAlt: "Elena Rodriguez Lead Designer",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" },
{ icon: Globe, url: "https://example.com" }
]
},
{
id: "3",
name: "James Mitchell",
role: "Senior Developer",
description: "Full-stack engineer specializing in scalable web applications, performance optimization, and modern tech stacks.",
imageSrc: "https://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg",
imageAlt: "James Mitchell Senior Developer",
socialLinks: [
{ icon: Github, url: "https://github.com" },
{ icon: Linkedin, url: "https://linkedin.com" }
]
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to work with a team that's passionate about your success? Let's create something extraordinary together."
animationType="background-highlight"
useInvertedBackground="noInvert"
buttons={[
{ text: "Get Started", href: "/contact" },
{ text: "View Our Work", href: "/work" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Webild Studio"
copyrightText="© 2025 Webild Studio. All rights reserved."
columns={[
{
title: "Services",
items: [
{ label: "Web Design", href: "/services" },
{ label: "Development", href: "/services" },
{ label: "Strategy", href: "/services" },
{ label: "Marketing", href: "/services" }
]
},
{
title: "Company",
items: [
{ label: "About Us", href: "/about" },
{ label: "Our Work", href: "/work" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Resources",
items: [
{ label: "Blog", href: "/blog" },
{ label: "Case Studies", href: "/case-studies" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "Insights", href: "/insights" }
]
},
{
title: "Connect",
items: [
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "Twitter", href: "https://twitter.com" },
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Email", href: "mailto:hello@webild.studio" }
]
}
]}
/>
</div>
</ThemeProvider>
);
}