import ThemeSwitch from "@/components/ui/theme-switch";
export default function DemoOne() {
return (
<div className="flex flex-col items-center gap-3">
<ThemeSwitch />
<a
href="https://daliagents.com"
target="_blank"
rel="noreferrer"
className="text-[10px] tracking-wide text-muted-foreground/60 transition-colors hover:text-muted-foreground"
>
daliagents.com
</a>
</div>
);
}