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
+1 -22
View File
@@ -15,10 +15,6 @@ const footerLinks = {
{ label: "Our Process", href: "#process" },
{ label: "Contact", href: "#contact" },
],
legal: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
]
}
export function Footer() {
@@ -28,7 +24,7 @@ export function Footer() {
<footer className="relative bg-card border-t border-border">
{/* Main Footer */}
<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 */}
<div className="col-span-2 md:col-span-1">
<Link href="/" className="flex items-center gap-2 mb-6 group">
@@ -82,23 +78,6 @@ export function Footer() {
))}
</ul>
</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>