fix: update contact info and remove legal section in footer

Remove Legal section and update contact details and business hours.

Co-authored-by: ASOwnerYT <[email protected]>
This commit is contained in:
v0
2026-03-20 00:34:51 +00:00
co-authored by ASOwnerYT
parent 49996fb164
commit 6be7f478a4
2 changed files with 7 additions and 36 deletions
+6 -14
View File
@@ -33,14 +33,14 @@ export function Contact() {
{ {
icon: Mail, icon: Mail,
label: "Email", label: "Email",
value: "hello@cloudrite.co.nz", value: "contact@cloudrite.co.nz",
href: "mailto:hello@cloudrite.co.nz" href: "mailto:contact@cloudrite.co.nz"
}, },
{ {
icon: Phone, icon: Phone,
label: "Phone", label: "Phone",
value: "09 123 4567", value: "021 107 7483",
href: "tel:+6491234567" href: "tel:+64211077483"
}, },
{ {
icon: MapPin, icon: MapPin,
@@ -99,16 +99,8 @@ export function Contact() {
<h4 className="font-bold mb-4">Business Hours</h4> <h4 className="font-bold mb-4">Business Hours</h4>
<div className="space-y-2 text-muted-foreground"> <div className="space-y-2 text-muted-foreground">
<div className="flex justify-between"> <div className="flex justify-between">
<span>Monday - Friday</span> <span>Hours</span>
<span className="text-foreground">8:30am - 5:30pm</span> <span className="text-foreground">By Appointment Only</span>
</div>
<div className="flex justify-between">
<span>Saturday</span>
<span className="text-foreground">By Appointment</span>
</div>
<div className="flex justify-between">
<span>Sunday</span>
<span className="text-foreground">Closed</span>
</div> </div>
</div> </div>
<div className="mt-4 pt-4 border-t border-border"> <div className="mt-4 pt-4 border-t border-border">
+1 -22
View File
@@ -15,10 +15,6 @@ const footerLinks = {
{ label: "Our Process", href: "#process" }, { label: "Our Process", href: "#process" },
{ label: "Contact", href: "#contact" }, { label: "Contact", href: "#contact" },
], ],
legal: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
]
} }
export function Footer() { export function Footer() {
@@ -28,7 +24,7 @@ export function Footer() {
<footer className="relative bg-card border-t border-border"> <footer className="relative bg-card border-t border-border">
{/* Main Footer */} {/* Main Footer */}
<div className="mx-auto max-w-7xl px-6 lg:px-8 py-16"> <div className="mx-auto max-w-7xl px-6 lg:px-8 py-16">
<div className="grid grid-cols-2 md:grid-cols-4 gap-8 lg:gap-16"> <div className="grid grid-cols-2 md:grid-cols-3 gap-8 lg:gap-16">
{/* Brand Column */} {/* Brand Column */}
<div className="col-span-2 md:col-span-1"> <div className="col-span-2 md:col-span-1">
<Link href="/" className="flex items-center gap-2 mb-6 group"> <Link href="/" className="flex items-center gap-2 mb-6 group">
@@ -82,23 +78,6 @@ export function Footer() {
))} ))}
</ul> </ul>
</div> </div>
{/* Legal */}
<div>
<h4 className="font-bold mb-4">Legal</h4>
<ul className="space-y-3">
{footerLinks.legal.map((link) => (
<li key={link.label}>
<Link
href={link.href}
className="text-sm text-muted-foreground hover:text-foreground transition-colors duration-300"
>
{link.label}
</Link>
</li>
))}
</ul>
</div>
</div> </div>
</div> </div>