SEO/AEO
This commit is contained in:
@@ -1,10 +1,7 @@
|
||||
import { Link } from 'react-router-dom';
|
||||
import { MapPin, Phone, Mail, ArrowUp } from 'lucide-react';
|
||||
import { MapPin, Phone, Mail } from 'lucide-react';
|
||||
|
||||
const Footer = () => {
|
||||
const scrollToTop = () => {
|
||||
window.scrollTo({ top: 0, behavior: 'smooth' });
|
||||
};
|
||||
|
||||
const quickLinks = [
|
||||
{ name: 'Services', path: '/services' },
|
||||
@@ -23,17 +20,8 @@ const Footer = () => {
|
||||
];
|
||||
|
||||
return (
|
||||
<footer className="bg-background-deep border-t border-border relative">
|
||||
{/* Back to top button */}
|
||||
<button
|
||||
onClick={scrollToTop}
|
||||
className="absolute -top-6 left-1/2 transform -translate-x-1/2 w-12 h-12 bg-neon rounded-full flex items-center justify-center text-neon-foreground hover:shadow-neon transition-all duration-300 hover:-translate-y-1"
|
||||
aria-label="Back to top"
|
||||
>
|
||||
<ArrowUp className="w-5 h-5" />
|
||||
</button>
|
||||
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 pt-16 pb-8">
|
||||
<footer className="bg-background-deep border-t border-border">
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16">
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 mb-12">
|
||||
{/* Company info */}
|
||||
<div className="lg:col-span-2">
|
||||
@@ -45,9 +33,9 @@ const Footer = () => {
|
||||
Bay Area Affiliates, Inc.
|
||||
</span>
|
||||
</div>
|
||||
|
||||
|
||||
<p className="text-foreground-muted mb-6 leading-relaxed max-w-md">
|
||||
Top-notch Computer & Networking solutions for the Coastal Bend.
|
||||
Top-notch Computer & Networking solutions for the Coastal Bend.
|
||||
We design, run and protect your IT so you can focus on growth.
|
||||
</p>
|
||||
|
||||
@@ -111,7 +99,7 @@ const Footer = () => {
|
||||
<div className="text-foreground-muted text-sm mb-4 sm:mb-0">
|
||||
© 2024 Bay Area Affiliates, Inc. All rights reserved.
|
||||
</div>
|
||||
|
||||
|
||||
<div className="flex items-center space-x-6 text-sm">
|
||||
<Link to="/privacy" className="text-foreground-muted hover:text-neon transition-colors">
|
||||
Privacy Policy
|
||||
|
||||
Reference in New Issue
Block a user