"use client";
import { useTheme } from "next-themes";
import { singleTools } from "@/config/tools";
import * as Select from "@/components/ui/select";
import { Configuration } from "@/components/configuration";
import { Configurations } from "@/components/configurations";
import { icons } from "@/components/icons";
import { PageRootSection } from "@/components/page-root-section";
import { PageSection } from "@/components/page-section";
export default function Page() {
const { theme = "system", setTheme } = useTheme();
const appThemeConfig = (
}
title="App theme"
description="Select which app theme to display"
control={
Light
Dark
System
}
/>
);
return (
);
}