Update src/app/contact/page.tsx

This commit is contained in:
2026-01-22 20:43:09 +00:00
parent 42c2387bf7
commit db24369cd9

View File

@@ -23,7 +23,7 @@ export default function ContactPage() {
> >
<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" },
@@ -39,8 +39,8 @@ export default function ContactPage() {
animationType="background-highlight" animationType="background-highlight"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
buttons={[ buttons={[
{ text: "Schedule a Call", href: "mailto:hello@webild.studio" }, { text: "Schedule a Call", href: "mailto:hello@dialedweb.studio" },
{ text: "Send us a Message", href: "mailto:hello@webild.studio" } { text: "Send us a Message", href: "mailto:hello@dialedweb.studio" }
]} ]}
/> />
</div> </div>
@@ -50,7 +50,7 @@ export default function ContactPage() {
title="Multiple ways to connect with our team. We're here to answer your questions and discuss how we can help achieve your digital goals." title="Multiple ways to connect with our team. We're here to answer your questions and discuss how we can help achieve your digital goals."
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
metrics={[ metrics={[
{ icon: Mail, label: "Email Us", value: "hello@webild.studio" }, { icon: Mail, label: "Email Us", value: "hello@dialedweb.studio" },
{ icon: Phone, label: "Call Us", value: "+1 (555) 123-4567" }, { icon: Phone, label: "Call Us", value: "+1 (555) 123-4567" },
{ icon: MapPin, label: "Visit Us", value: "San Francisco, CA" }, { icon: MapPin, label: "Visit Us", value: "San Francisco, CA" },
{ icon: Clock, label: "Response Time", value: "Within 24hrs" } { icon: Clock, label: "Response Time", value: "Within 24hrs" }
@@ -72,12 +72,11 @@ export default function ContactPage() {
<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" },
@@ -85,16 +84,14 @@ export default function ContactPage() {
] ]
}, },
{ {
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" },
@@ -102,12 +99,11 @@ export default function ContactPage() {
] ]
}, },
{ {
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" }
] ]
} }
]} ]}