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 ( <>
Shipixen Logo {/* {typeof siteConfig.logoTitle === 'string' ? (
Shipixen
) : null} */}
How to install

These components are meant to be copy-pasted into your project. For it to work, you either need to get{' '} Shipixen {' '} (easiest) or install{' '} Page UI {' '} in your app.


Shipixen

If you are using Shipixen, there is nothing to install. Just copy the code and paste it anywhere in your project.
You can read more in the{' '} Shipixen documentation .


Page UI

If you are using Page UI, you can install it by{' '} following the installation steps {' '} for your preferred framework.

Docs {/* */}
); }; export const FixedBrickControls = ({ className }: { className?: string }) => { return (
{/* */}
); };