Update src/app/about/page.tsx

This commit is contained in:
2026-01-22 20:43:08 +00:00
parent dd3afd6401
commit f1e97ffe69

View File

@@ -24,7 +24,7 @@ export default function AboutPage() {
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
brandName="Webild Studio" brandName="Dialed Web"
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
@@ -59,37 +59,19 @@ export default function AboutPage() {
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
members={[ members={[
{ {
id: "1", 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: [
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: Linkedin, url: "https://linkedin.com" },
{ icon: Twitter, url: "https://twitter.com" } { icon: Twitter, url: "https://twitter.com" }
] ]
}, },
{ {
id: "2", 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: [
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: Linkedin, url: "https://linkedin.com" },
{ icon: Globe, url: "https://example.com" } { icon: Globe, url: "https://example.com" }
] ]
}, },
{ {
id: "3", 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: [
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: Github, url: "https://github.com" },
{ icon: Linkedin, url: "https://linkedin.com" } { icon: Linkedin, url: "https://linkedin.com" }
] ]
@@ -112,12 +94,11 @@ export default function AboutPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="Webild Studio" logoText="Dialed Web"
copyrightText="© 2025 Webild Studio. All rights reserved." copyrightText="© 2025 Dialed Web. All rights reserved."
columns={[ columns={[
{ {
title: "Services", title: "Services", items: [
items: [
{ label: "Web Design", href: "/services" }, { label: "Web Design", href: "/services" },
{ label: "Development", href: "/services" }, { label: "Development", href: "/services" },
{ label: "Strategy", href: "/services" }, { label: "Strategy", href: "/services" },
@@ -125,16 +106,14 @@ export default function AboutPage() {
] ]
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "/about" },
{ label: "Our Work", href: "/work" }, { label: "Our Work", href: "/work" },
{ label: "Contact", href: "/contact" } { label: "Contact", href: "/contact" }
] ]
}, },
{ {
title: "Resources", title: "Resources", items: [
items: [
{ label: "Blog", href: "/blog" }, { label: "Blog", href: "/blog" },
{ label: "Case Studies", href: "/case-studies" }, { label: "Case Studies", href: "/case-studies" },
{ label: "Portfolio", href: "/portfolio" }, { label: "Portfolio", href: "/portfolio" },
@@ -142,12 +121,11 @@ export default function AboutPage() {
] ]
}, },
{ {
title: "Connect", title: "Connect", items: [
items: [
{ label: "LinkedIn", href: "https://linkedin.com" }, { label: "LinkedIn", href: "https://linkedin.com" },
{ label: "Twitter", href: "https://twitter.com" }, { label: "Twitter", href: "https://twitter.com" },
{ label: "Instagram", href: "https://instagram.com" }, { label: "Instagram", href: "https://instagram.com" },
{ label: "Email", href: "mailto:hello@webild.studio" } { label: "Email", href: "mailto:hello@dialedweb.studio" }
] ]
} }
]} ]}
@@ -155,4 +133,4 @@ export default function AboutPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }