Initial Commit

This commit is contained in:
Damian Wessels
2025-09-08 11:01:51 +02:00
commit fd33b5ceba
81 changed files with 17432 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { Moon } from "lucide-react";
import React from "react";
import { Button } from "@/components/ui/button";
import { toggleTheme } from "@/helpers/theme_helpers";
export default function ToggleTheme() {
return (
<Button onClick={toggleTheme} size="icon">
<Moon size={16} />
</Button>
);
}