[dyad] Added a footer and theme switcher - wrote 6 file(s), deleted 1 file(s)

This commit is contained in:
[dyad]
2026-01-20 12:00:18 +01:00
parent 3f4cd7443c
commit e978708456
7 changed files with 60 additions and 20 deletions

14
src/components/footer.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { ThemeToggle } from "@/components/theme-toggle";
export const Footer = () => {
return (
<footer className="w-full max-w-2xl p-4 row-start-2">
<div className="flex justify-between items-center">
<p className="text-sm text-gray-500 dark:text-gray-400">
v0.1.0
</p>
<ThemeToggle />
</div>
</footer>
);
};