import {useState, useEffect} from "react"; import { Button, Input, Tooltip, Image, CardFooter, Card, CardBody, Switch, Spinner, Pagination, Tabs, TabItem, } from "@nextui-org/react"; import {ArrowRightIcon, MoonFilledIcon, SunFilledIcon} from "@nextui-org/shared-icons"; import {useTheme} from "next-themes"; import dynamic from "next/dynamic"; import {title, subtitle} from "@/components/primitives"; import {NextUILogo} from "@/components"; import {GithubIcon} from "@/components/icons"; import {UserTwitterCard} from "@/components/demos"; const DynamicLopperBG = dynamic(() => import("./looper-bg").then((mod) => mod.LooperBg), { ssr: false, }); const FloatingComponents: React.FC<{mounted: boolean}> = ({mounted}) => { const {theme, setTheme} = useTheme(); const isSelected = theme === "dark" && mounted; const onChange = () => { theme === "light" ? setTheme("dark") : setTheme("light"); }; return (
} isSelected={isSelected} size="xl" startIcon={} onChange={onChange} /> {}} />

Camera

$525

Available soon.

); }; export const Hero = () => { const [mounted, setMounted] = useState(false); useEffect(() => { setMounted(true); }, []); return (

Make 

beautiful 

websites regardless of your design experience.

Beautiful, fast and modern React UI library.

); };