import type { FC } from "react";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faBookOpen, faCheck, faCopy, faCube, faCircleQuestion } from "@fortawesome/pro-duotone-svg-icons";
const BookOpen01: FC<{ className?: string }> = ({ className }) => ;
const Check: FC<{ className?: string }> = ({ className }) => ;
const Copy01: FC<{ className?: string }> = ({ className }) => ;
const Cube01: FC<{ className?: string }> = ({ className }) => ;
const HelpCircle: FC<{ className?: string }> = ({ className }) => ;
import { Button } from "@/components/base/buttons/button";
import { ButtonUtility } from "@/components/base/buttons/button-utility";
import { UntitledLogoMinimal } from "@/components/foundations/logo/untitledui-logo-minimal";
import { useClipboard } from "@/hooks/use-clipboard";
export const HomeScreen = () => {
const clipboard = useClipboard();
return (
Untitled UI Vite starter kit
Get started by using existing components that came with this starter kit or add new ones:
npx untitledui@latest add
clipboard.copy("npx untitledui@latest add")}
/>
);
};