18 lines
500 B
TypeScript
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>
|
|
);
|
|
}
|