2023-04-30 21:34:36 -03:00

208 lines
6.5 KiB
TypeScript

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 (
<div className="flex flex-col relative w-1/2">
<Switch
classNames={{
base:
"absolute -top-[220px] -right-[40px] animate-[levitate_13s_ease_infinite_1s_reverse]",
wrapper: "shadow-sm",
startIcon: "text-white",
}}
endIcon={<MoonFilledIcon />}
isSelected={isSelected}
size="xl"
startIcon={<SunFilledIcon />}
onChange={onChange}
/>
<Input
className="absolute -top-[130px] -right-[120px] animate-[levitate_10s_ease_infinite] w-[200px]"
color="secondary"
defaultValue="NextUI"
label="Input"
labelPosition="outside"
radius="xl"
variant="bordered"
onClear={() => {}}
/>
<Card
isFooterBlurred
className="absolute -top-[260px] right-[100px] h-[120px] animate-[levitate_12s_ease_infinite_1s] z-0 max-w-fit"
radius="2xl"
>
<Image
className="object-cover -translate-y-12 h-[100%]"
src="/images/card-example-6.jpeg"
width={120}
/>
<CardFooter className="before:bg-black/10 before:border before:border-white/20 overflow-hidden justify-between py-2 absolute before:rounded-xl rounded-xl bottom-1 w-[calc(100%_-_8px)] shadow-lg ml-1 z-10">
<p className="text-xs font-semibold text-white/80">Camera</p>
<p className="text-xs font-semibold text-white/80">$525</p>
</CardFooter>
</Card>
<Tabs
aria-label="Floating tabs example"
className=""
classNames={{
base: "absolute left-[170px] -top-[160px] h-10 animate-[levitate_17s_ease_infinite_1s]",
tabList: "max-w-[200px] bg-content1 shadow-sm",
}}
radius="full"
size="xs"
>
<TabItem key="notes" title="Notes" />
<TabItem key="tasks" title="Tasks" />
<TabItem key="files" title="Files" />
</Tabs>
<UserTwitterCard className="absolute left-[80px] -top-[80px] animate-[levitate_16s_ease_infinite] border-none" />
<Card className="absolute right-[110px] -top-[60px] animate-[levitate_18s_ease_infinite] shadow-lg z-10 max-w-fit border-none">
<CardBody>
<NextUILogo small size={60} />
</CardBody>
</Card>
<div className="absolute z-10 -top-[40px] -right-[230px] animate-[levitate_14s_ease_infinite_1s]">
<Pagination
isCompact
showControls
showShadow
classNames={{
base: "shadow-sm rounded-xl",
item: "bg-background dark:bg-content1",
prev: "bg-background dark:bg-content1",
next: "bg-background dark:bg-content1",
}}
initialPage={6}
total={10}
/>
</div>
<Tooltip
isOpen
showArrow
className="text-sm animate-[levitate_14s_ease_infinite]"
color="secondary"
content="Developers love Next.js"
placement="top"
>
<Button
className="absolute left-[200px] top-[160px] max-w-fit animate-[levitate_14s_ease_infinite_0.5s]"
color="secondary"
size="sm"
variant="flat"
>
Tooltip
</Button>
</Tooltip>
<Card className="absolute right-[10px] top-[30px] animate-[levitate_16s_ease_infinite] shadow-lg z-10 max-w-fit border-none">
<CardBody>
<Spinner color="secondary" size="xl" />
</CardBody>
</Card>
<Card
isFooterBlurred
className="absolute right-[60px] top-[100px] animate-[levitate_12s_ease_infinite_1s] z-0 max-w-fit"
radius="2xl"
>
<Image className="object-cover" height={200} src="/images/hero-card.jpeg" width={200} />
<CardFooter className="before:bg-white/10 overflow-hidden justify-between py-2 absolute before:rounded-xl rounded-xl bottom-1 w-[calc(100%_-_8px)] shadow-lg ml-1 z-10">
<p className="text-xs text-white/80">Available soon.</p>
<Button color="secondary" radius="full" size="xs" variant="flat">
Notify me
</Button>
</CardFooter>
</Card>
</div>
);
};
export const Hero = () => {
const [mounted, setMounted] = useState(false);
useEffect(() => {
setMounted(true);
}, []);
return (
<section className="flex relative w-full flex-nowrap justify-between items-center h-[calc(100vh_-_64px)] 2xl:h-[calc(84vh_-_64px)]">
<div className="flex flex-col gap-6 w-1/2 xl:mt-10">
<div>
<h1 className={title()}>Make&nbsp;</h1>
<h1 className={title({color: "violet"})}>beautiful&nbsp;</h1>
<h1 className={title()}>websites regardless of your design experience.</h1>
</div>
<h4 className={subtitle({fullWidth: true})}>
Beautiful, fast and modern React UI library.
</h4>
<div className="flex items-center gap-4">
<Button
color="primary"
endIcon={
<ArrowRightIcon
className="group-data-[hover=true]:translate-x-0.5 transition-transform"
strokeWidth={2}
/>
}
radius="full"
size="lg"
>
Get Started
</Button>
<Button radius="full" size="lg" startIcon={<GithubIcon />} variant="bordered">
Github
</Button>
</div>
</div>
<FloatingComponents mounted={mounted} />
<DynamicLopperBG
className="absolute translate-y-[10%] -z-50 opacity-0 data-[mounted=true]:opacity-100 transition-opacity"
data-mounted={mounted}
/>
</section>
);
};