import Image from 'next/image';
import { cn } from '@/lib/utils';
import Link from '@/components/shared/Link';
import SearchButton from '@/components/search/SearchButton';
import ActiveLink from '@/components/shared/ActiveLink';
import ThemeSwitch from '@/components/shared/ThemeSwitch';
import { siteConfig } from '@/data/config/site.settings';
import { TemplateSelector } from '@/components/bricks/template/template-selector';
import { ThiefModeToggle } from '@/components/bricks/controls/thief-mode';
import { BookIcon, DownloadIcon } from 'lucide-react';
import {
Dialog,
DialogContent,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
DialogClose,
} from '@/components/shared/ui/dialog';
import { Button } from '@/components/shared/ui/button';
import { ThemeAndFontSelector } from '@/components/bricks/theme/theme-and-font-selector';
export const BrickControls = ({ className }: { className?: string }) => {
return (
<>