[dyad] Added a footer and theme switcher - wrote 6 file(s), deleted 1 file(s)
This commit is contained in:
14
src/components/footer.tsx
Normal file
14
src/components/footer.tsx
Normal 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>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user