Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions components/ui/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import React from 'react';
import Link from 'next/link';
import { Calendar } from 'lucide-react';

export function Footer() {
return (
<footer className="bg-muted border-t mt-20" data-test-id="homepage-footer">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div className="text-center">
<Link href="/" className="flex items-center justify-center gap-3 mb-4" data-test-id="footer-logo">
<div className="w-8 h-8 bg-primary rounded-lg flex items-center justify-center">
<Calendar className="w-5 h-5 text-primary-foreground" />
</div>
<span className="text-xl font-bold text-foreground" data-test-id="footer-title">LocalLoop</span>
<Link href="/" className="flex items-center justify-center mb-4" data-test-id="footer-logo">
<img

Check warning on line 10 in components/ui/Footer.tsx

View workflow job for this annotation

GitHub Actions / ⚡ Quick Quality Check

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src="/logo.svg"
alt="LocalLoop"
className="w-24 h-12"
/>
</Link>
<p className="text-muted-foreground mb-6" data-test-id="footer-description">
Connecting communities through local events
Expand Down
Loading