mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 12:27:44 +00:00
77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
"use client";
|
|
import React from "react";
|
|
|
|
import { AnimatePresence, motion } from "framer-motion";
|
|
import { Logo } from "@/components/logo";
|
|
|
|
export function Features() {
|
|
return (
|
|
<>
|
|
<div className="flex flex-col lg:flex-row bg-white dark:bg-black w-full gap-4 mx-auto px-8">
|
|
<Card title="Better Auth" icon={<Logo className=" w-44" />}></Card>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
const Card = ({
|
|
title,
|
|
icon,
|
|
children,
|
|
}: {
|
|
title: string;
|
|
icon: React.ReactNode;
|
|
children?: React.ReactNode;
|
|
}) => {
|
|
const [hovered, setHovered] = React.useState(false);
|
|
return (
|
|
<div
|
|
onMouseEnter={() => setHovered(true)}
|
|
onMouseLeave={() => setHovered(false)}
|
|
className="border border-black/20 group/canvas-card flex items-center justify-center dark:border-white/20 max-w-sm w-full mx-auto p-4 relative h-72"
|
|
>
|
|
<Icon className="absolute h-6 w-6 -top-3 -left-3 dark:text-white text-black" />
|
|
<Icon className="absolute h-6 w-6 -bottom-3 -left-3 dark:text-white text-black" />
|
|
<Icon className="absolute h-6 w-6 -top-3 -right-3 dark:text-white text-black" />
|
|
<Icon className="absolute h-6 w-6 -bottom-3 -right-3 dark:text-white text-black" />
|
|
|
|
<AnimatePresence>
|
|
{hovered && (
|
|
<motion.div
|
|
initial={{ opacity: 0 }}
|
|
animate={{ opacity: 1 }}
|
|
className="h-full w-full absolute inset-0"
|
|
>
|
|
{children}
|
|
</motion.div>
|
|
)}
|
|
</AnimatePresence>
|
|
|
|
<div className="relative z-20">
|
|
<div className="text-center group-hover/canvas-card:-translate-y-4 group-hover/canvas-card:opacity-0 transition duration-200 w-full mx-auto flex items-center justify-center">
|
|
{icon}
|
|
</div>
|
|
<h2 className="dark:text-white text-xl opacity-0 group-hover/canvas-card:opacity-100 relative z-10 text-black mt-4 font-bold group-hover/canvas-card:text-white group-hover/canvas-card:-translate-y-2 transition duration-200">
|
|
{title}
|
|
</h2>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const Icon = ({ className, ...rest }: any) => {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
strokeWidth="1.5"
|
|
stroke="currentColor"
|
|
className={className}
|
|
{...rest}
|
|
>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M12 6v12m6-6H6" />
|
|
</svg>
|
|
);
|
|
};
|