Pushing project code
This commit is contained in:
@@ -12,14 +12,14 @@ const Footer: React.FC = () => {
|
||||
<span className="font-display font-bold text-lg tracking-tight text-gray-900 dark:text-white">Bay Area Affiliates</span>
|
||||
</div>
|
||||
<p className="text-sm text-gray-600 dark:text-gray-400 max-w-xs mb-6">
|
||||
Track every move, analyze your performance, and get real-time coaching. Your dedicated IT partner in the Bay Area.
|
||||
Providing reliable IT services and solutions to the Coastal Bend community for over 25 years.
|
||||
</p>
|
||||
<div className="flex gap-4">
|
||||
{['X', 'in', 'fb'].map((social) => (
|
||||
<motion.a
|
||||
key={social}
|
||||
href="#"
|
||||
whileHover={{ y: -5, borderColor: "#3b82f6", color: "#3b82f6" }}
|
||||
<motion.a
|
||||
key={social}
|
||||
href="#"
|
||||
whileHover={{ y: -5, borderColor: "#ffffff", color: "#ffffff" }}
|
||||
className="w-8 h-8 flex items-center justify-center rounded border border-gray-300 dark:border-white/20 text-gray-600 dark:text-gray-400 transition-colors"
|
||||
>
|
||||
<span className="text-xs font-bold">{social}</span>
|
||||
@@ -27,15 +27,15 @@ const Footer: React.FC = () => {
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div>
|
||||
<h4 className="text-sm font-bold text-gray-900 dark:text-white mb-6 uppercase tracking-wider">Navigation</h4>
|
||||
<ul className="space-y-4 text-sm text-gray-600 dark:text-gray-400">
|
||||
{['About', 'Features', 'Testimonials', 'Pricing'].map((item) => (
|
||||
{['Services', 'Features', 'Blog', 'Contact'].map((item) => (
|
||||
<li key={item}>
|
||||
<motion.a
|
||||
href="#"
|
||||
whileHover={{ x: 5, color: "#3b82f6" }}
|
||||
<motion.a
|
||||
href="#"
|
||||
whileHover={{ x: 5, color: "#ffffff" }}
|
||||
className="inline-block transition-colors"
|
||||
>
|
||||
{item}
|
||||
@@ -44,25 +44,25 @@ const Footer: React.FC = () => {
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div>
|
||||
<h4 className="text-sm font-bold text-gray-900 dark:text-white mb-6 uppercase tracking-wider">Contact</h4>
|
||||
<ul className="space-y-4 text-sm text-gray-600 dark:text-gray-400">
|
||||
<li>support@bayareaaffiliates.com</li>
|
||||
<li>(361) 765-8400</li>
|
||||
<li>123 Market St, San Francisco, CA</li>
|
||||
<li><motion.a whileHover={{ x: 5, color: "#3b82f6" }} href="#" className="inline-block transition-colors">FAQ</motion.a></li>
|
||||
<li>1001 Blucher St, Corpus Christi, TX 78401</li>
|
||||
<li><motion.a whileHover={{ x: 5, color: "#ffffff" }} href="#" className="inline-block transition-colors">FAQ</motion.a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div className="border-t border-gray-200 dark:border-white/10 pt-8 flex flex-col md:flex-row justify-between items-center gap-4">
|
||||
<p className="text-xs text-gray-500 dark:text-gray-600">
|
||||
© 2024 Bay Area Affiliates, Inc. All rights reserved.
|
||||
© 2026 Bay Area Affiliates, Inc. All rights reserved.
|
||||
</p>
|
||||
<div className="flex gap-6">
|
||||
<motion.a whileHover={{ color: "#3b82f6" }} href="#" className="text-xs text-gray-500 dark:text-gray-600 transition-colors">Privacy Policy</motion.a>
|
||||
<motion.a whileHover={{ color: "#3b82f6" }} href="#" className="text-xs text-gray-500 dark:text-gray-600 transition-colors">Terms of Service</motion.a>
|
||||
<motion.a whileHover={{ color: "#ffffff" }} href="#" className="text-xs text-gray-500 dark:text-gray-600 transition-colors">Privacy Policy</motion.a>
|
||||
<motion.a whileHover={{ color: "#ffffff" }} href="#" className="text-xs text-gray-500 dark:text-gray-600 transition-colors">Terms of Service</motion.a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user