-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fmt on landing page * adding cn utils * adding checkmark for copy * fmt fix
- Loading branch information
Showing
4 changed files
with
99 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
'use client'; | ||
import { Card, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; | ||
import React, { type SVGProps, useRef, useState, FC, type ForwardRefExoticComponent, type RefAttributes } from 'react'; | ||
|
||
|
||
|
||
type FeaturesProps = { | ||
name: string; | ||
description: string; | ||
logo: React.ReactNode; | ||
} | ||
|
||
const CardSpotlight = (props: FeaturesProps) => { | ||
const divRef = useRef<HTMLDivElement>(null); | ||
const [isFocused, setIsFocused] = useState(false); | ||
const [position, setPosition] = useState({ x: 0, y: 0 }); | ||
const [opacity, setOpacity] = useState(0); | ||
|
||
const handleMouseMove = (e: React.MouseEvent<HTMLDivElement>) => { | ||
if (!divRef.current || isFocused) return; | ||
|
||
const div = divRef.current; | ||
const rect = div.getBoundingClientRect(); | ||
|
||
setPosition({ x: e.clientX - rect.left, y: e.clientY - rect.top }); | ||
}; | ||
|
||
const handleFocus = () => { | ||
setIsFocused(true); | ||
setOpacity(1); | ||
}; | ||
|
||
const handleBlur = () => { | ||
setIsFocused(false); | ||
setOpacity(0); | ||
}; | ||
|
||
const handleMouseEnter = () => { | ||
setOpacity(1); | ||
}; | ||
|
||
const handleMouseLeave = () => { | ||
setOpacity(0); | ||
}; | ||
|
||
return ( | ||
<Card | ||
ref={divRef} | ||
onMouseMove={handleMouseMove} | ||
onFocus={handleFocus} | ||
onBlur={handleBlur} | ||
onMouseEnter={handleMouseEnter} | ||
onMouseLeave={handleMouseLeave} | ||
className='relative overflow-hidden rounded-xl border dark:border-gray-800 bg-white dark:bg-gradient-to-r dark:from-black dark:to-neutral-950 dark:shadow-2xl' | ||
> | ||
|
||
<div | ||
className='pointer-events-none absolute -inset-px opacity-0 transition duration-300' | ||
style={{ | ||
opacity, | ||
background: `radial-gradient(600px circle at ${position.x}px ${position.y}px, rgba(255,182,255,.1), transparent 40%)`, | ||
}} | ||
/> | ||
<div className="pl-6 pt-6"> | ||
|
||
{props.logo} | ||
</div> | ||
<CardHeader className="pb-6"> | ||
<CardTitle className="text-xl">{props.name}</CardTitle> | ||
<CardDescription>{props.description}</CardDescription> | ||
</CardHeader> | ||
|
||
</Card> | ||
); | ||
}; | ||
|
||
export default CardSpotlight; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
import { mysqlTableCreator } from "drizzle-orm/mysql-core"; | ||
import { DATABASE_PREFIX as prefix } from "@/lib/constants"; | ||
import { twMerge } from "tailwind-merge"; | ||
import clsx, {type ClassValue } from "clsx"; | ||
|
||
export const mysqlTable = mysqlTableCreator((name) => `${prefix}_${name}`); | ||
|
||
|
||
export function cn(...inputs: ClassValue[]) { | ||
return twMerge(clsx(inputs)) | ||
} | ||
|