add motd to the server page
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 56s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 56s
This commit is contained in:
15
src/app/components/theme-toggle-button.tsx
Normal file
15
src/app/components/theme-toggle-button.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
"use client";
|
||||
|
||||
import { useTheme } from "next-themes";
|
||||
import { MoonIcon } from "./icon/moon-icon";
|
||||
import { SunIcon } from "./icon/sun-icon";
|
||||
|
||||
export function ToggleThemeButton(): JSX.Element {
|
||||
const { theme, setTheme } = useTheme();
|
||||
|
||||
return (
|
||||
<button className="p-2 rounded-lg" onClick={() => setTheme(theme === "dark" ? "light" : "dark")}>
|
||||
{theme === "dark" ? <SunIcon /> : <MoonIcon color="#000" />}
|
||||
</button>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user