[dyad] Aligned footer width - wrote 1 file(s)

This commit is contained in:
[dyad]
2026-01-20 15:45:45 +01:00
parent 430babf840
commit d496595466

View File

@@ -4,12 +4,14 @@ import { Separator } from "@/components/ui/separator";
export const Footer = () => {
return (
<footer className="w-full">
<Separator />
<div className="w-full max-w-6xl mx-auto flex justify-between items-center p-4">
<p className="text-sm text-muted-foreground">
v0.1.0
</p>
<ThemeToggle />
<div className="w-full max-w-6xl mx-auto px-4 sm:px-8">
<Separator />
<div className="flex justify-between items-center py-4">
<p className="text-sm text-muted-foreground">
v0.1.0
</p>
<ThemeToggle />
</div>
</div>
</footer>
);