client/packages/settings/src/pages/theme.tsx
Alois ace7973dff
Some checks failed
/ build-web (push) Failing after 5m27s
/ build-desktop (linux) (push) Failing after 5m54s
/ build-mobile (push) Failing after 8m0s
/ release (push) Has been skipped
(feat): big methanium/ui migration
(feat): update message state icons
(qol): update todo
(qol): formatted
2026-07-26 18:55:46 +02:00

18 lines
500 B
TypeScript

import { ThemeCustomizer } from "@methanium/ui";
export default function Page() {
return (
<div className="h-full overflow-y-auto p-5 md:p-8">
<ThemeCustomizer />
<a
className="mt-8 block max-w-md text-xs text-muted-foreground"
href="https://git.methanium.net/tensamin/client/issues/new"
target="_blank"
rel="noreferrer"
>
Please open an issue on Git to tell us what you would like to see in
here.
</a>
</div>
);
}