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,15 +1,21 @@
|
|||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
|
import { AwesomeIcon } from '@/components/ui/awesome-icon'
|
||||||
|
|
||||||
export function AppFooter() {
|
export function AppFooter() {
|
||||||
return (
|
return (
|
||||||
<footer className="border-t border-border/40 bg-background/80 backdrop-blur-sm px-6 py-12 lg:px-8">
|
<footer className="border-t border-border/40 bg-background/80 backdrop-blur-sm">
|
||||||
<div className="mx-auto max-w-7xl">
|
<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="flex flex-col items-center justify-between gap-4 sm:flex-row">
|
||||||
<div className="text-center sm:text-left">
|
<div className="flex items-center gap-3 text-center sm:text-left">
|
||||||
<div className="gradient-text mb-2 text-xl font-bold">Awesome</div>
|
<div className="flex h-8 w-8 items-center justify-center rounded-lg bg-background p-1 shadow-md ring-1 ring-primary/10">
|
||||||
<p className="text-sm text-muted-foreground">
|
<AwesomeIcon size={24} className="drop-shadow-sm" />
|
||||||
Built with 💜💗💛 and maximum awesomeness
|
</div>
|
||||||
</p>
|
<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>
|
||||||
<div className="flex flex-wrap justify-center gap-6 text-sm">
|
<div className="flex flex-wrap justify-center gap-6 text-sm">
|
||||||
<Link href="/legal" className="text-muted-foreground hover:text-primary">
|
<Link href="/legal" className="text-muted-foreground hover:text-primary">
|
||||||
|
|||||||
Reference in New Issue
Block a user