16 lines
435 B
TypeScript
16 lines
435 B
TypeScript
import { ThemeToggle } from "@/components/theme-toggle";
|
|
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>
|
|
</footer>
|
|
);
|
|
}; |