fix: improve footer layout and add logo
- Moved padding inside max-w-7xl container to match header alignment - Added AwesomeIcon logo to the left of the title - Restructured layout with logo, title, and tagline in a flex row - Reduced tagline text size for better hierarchy 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,16 +1,22 @@
|
||||
import Link from 'next/link'
|
||||
import { AwesomeIcon } from '@/components/ui/awesome-icon'
|
||||
|
||||
export function AppFooter() {
|
||||
return (
|
||||
<footer className="border-t border-border/40 bg-background/80 backdrop-blur-sm px-6 py-12 lg:px-8">
|
||||
<div className="mx-auto max-w-7xl">
|
||||
<footer className="border-t border-border/40 bg-background/80 backdrop-blur-sm">
|
||||
<div className="mx-auto max-w-7xl px-6 py-12">
|
||||
<div className="flex flex-col items-center justify-between gap-4 sm:flex-row">
|
||||
<div className="text-center sm:text-left">
|
||||
<div className="gradient-text mb-2 text-xl font-bold">Awesome</div>
|
||||
<p className="text-sm text-muted-foreground">
|
||||
<div className="flex items-center gap-3 text-center sm:text-left">
|
||||
<div className="flex h-8 w-8 items-center justify-center rounded-lg bg-background p-1 shadow-md ring-1 ring-primary/10">
|
||||
<AwesomeIcon size={24} className="drop-shadow-sm" />
|
||||
</div>
|
||||
<div>
|
||||
<div className="gradient-text mb-1 text-xl font-bold">Awesome</div>
|
||||
<p className="text-xs text-muted-foreground">
|
||||
Built with 💜💗💛 and maximum awesomeness
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="flex flex-wrap justify-center gap-6 text-sm">
|
||||
<Link href="/legal" className="text-muted-foreground hover:text-primary">
|
||||
Legal
|
||||
|
||||
Reference in New Issue
Block a user