-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
664 additions
and
43 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 |
---|---|---|
|
@@ -12,6 +12,6 @@ | |
}, | ||
"aliases": { | ||
"components": "@/components", | ||
"utils": "@/utils" | ||
"utils": "@/utils/cn" | ||
} | ||
} |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,36 @@ | ||
import { cva, type VariantProps } from 'class-variance-authority'; | ||
import * as React from 'react'; | ||
|
||
import { cn } from '@/utils/cn'; | ||
|
||
const badgeVariants = cva( | ||
'inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2', | ||
{ | ||
defaultVariants: { | ||
variant: 'default', | ||
}, | ||
variants: { | ||
variant: { | ||
default: | ||
'border-transparent bg-primary text-primary-foreground hover:bg-primary/80', | ||
destructive: | ||
'border-transparent bg-destructive text-destructive-foreground hover:bg-destructive/80', | ||
outline: 'text-foreground', | ||
secondary: | ||
'border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80', | ||
}, | ||
}, | ||
}, | ||
); | ||
|
||
export interface BadgeProps | ||
extends React.HTMLAttributes<HTMLDivElement>, | ||
VariantProps<typeof badgeVariants> {} | ||
|
||
function Badge({ className, variant, ...props }: BadgeProps) { | ||
return ( | ||
<div className={cn(badgeVariants({ variant }), className)} {...props} /> | ||
); | ||
} | ||
|
||
export { Badge, badgeVariants }; |
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,86 @@ | ||
import * as React from 'react'; | ||
|
||
import { cn } from '@/utils/cn'; | ||
|
||
const Card = React.forwardRef< | ||
HTMLDivElement, | ||
React.HTMLAttributes<HTMLDivElement> | ||
>(({ className, ...props }, ref) => ( | ||
<div | ||
ref={ref} | ||
className={cn( | ||
'rounded-lg border bg-card text-card-foreground shadow-sm', | ||
className, | ||
)} | ||
{...props} | ||
/> | ||
)); | ||
Card.displayName = 'Card'; | ||
|
||
const CardHeader = React.forwardRef< | ||
HTMLDivElement, | ||
React.HTMLAttributes<HTMLDivElement> | ||
>(({ className, ...props }, ref) => ( | ||
<div | ||
ref={ref} | ||
className={cn('flex flex-col space-y-1.5 p-6', className)} | ||
{...props} | ||
/> | ||
)); | ||
CardHeader.displayName = 'CardHeader'; | ||
|
||
const CardTitle = React.forwardRef< | ||
HTMLParagraphElement, | ||
React.HTMLAttributes<HTMLHeadingElement> | ||
>(({ className, ...props }, ref) => ( | ||
<h3 | ||
ref={ref} | ||
className={cn( | ||
'text-2xl font-semibold leading-none tracking-tight', | ||
className, | ||
)} | ||
{...props} | ||
/> | ||
)); | ||
CardTitle.displayName = 'CardTitle'; | ||
|
||
const CardDescription = React.forwardRef< | ||
HTMLParagraphElement, | ||
React.HTMLAttributes<HTMLParagraphElement> | ||
>(({ className, ...props }, ref) => ( | ||
<p | ||
ref={ref} | ||
className={cn('text-sm text-muted-foreground', className)} | ||
{...props} | ||
/> | ||
)); | ||
CardDescription.displayName = 'CardDescription'; | ||
|
||
const CardContent = React.forwardRef< | ||
HTMLDivElement, | ||
React.HTMLAttributes<HTMLDivElement> | ||
>(({ className, ...props }, ref) => ( | ||
<div ref={ref} className={cn('p-6 pt-0', className)} {...props} /> | ||
)); | ||
CardContent.displayName = 'CardContent'; | ||
|
||
const CardFooter = React.forwardRef< | ||
HTMLDivElement, | ||
React.HTMLAttributes<HTMLDivElement> | ||
>(({ className, ...props }, ref) => ( | ||
<div | ||
ref={ref} | ||
className={cn('flex items-center p-6 pt-0', className)} | ||
{...props} | ||
/> | ||
)); | ||
CardFooter.displayName = 'CardFooter'; | ||
|
||
export { | ||
Card, | ||
CardContent, | ||
CardDescription, | ||
CardFooter, | ||
CardHeader, | ||
CardTitle, | ||
}; |
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,128 @@ | ||
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu'; | ||
import { cva } from 'class-variance-authority'; | ||
import { ChevronDown } from 'lucide-react'; | ||
import * as React from 'react'; | ||
|
||
import { cn } from '@/utils/cn'; | ||
|
||
const NavigationMenu = React.forwardRef< | ||
React.ElementRef<typeof NavigationMenuPrimitive.Root>, | ||
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Root> | ||
>(({ children, className, ...props }, ref) => ( | ||
<NavigationMenuPrimitive.Root | ||
ref={ref} | ||
className={cn( | ||
'relative z-10 flex max-w-max flex-1 items-center justify-center', | ||
className, | ||
)} | ||
{...props} | ||
> | ||
{children} | ||
<NavigationMenuViewport /> | ||
</NavigationMenuPrimitive.Root> | ||
)); | ||
NavigationMenu.displayName = NavigationMenuPrimitive.Root.displayName; | ||
|
||
const NavigationMenuList = React.forwardRef< | ||
React.ElementRef<typeof NavigationMenuPrimitive.List>, | ||
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.List> | ||
>(({ className, ...props }, ref) => ( | ||
<NavigationMenuPrimitive.List | ||
ref={ref} | ||
className={cn( | ||
'group flex flex-1 list-none items-center justify-center space-x-1', | ||
className, | ||
)} | ||
{...props} | ||
/> | ||
)); | ||
NavigationMenuList.displayName = NavigationMenuPrimitive.List.displayName; | ||
|
||
const NavigationMenuItem = NavigationMenuPrimitive.Item; | ||
|
||
const navigationMenuTriggerStyle = cva( | ||
'group inline-flex h-10 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[active]:bg-accent/50 data-[state=open]:bg-accent/50', | ||
); | ||
|
||
const NavigationMenuTrigger = React.forwardRef< | ||
React.ElementRef<typeof NavigationMenuPrimitive.Trigger>, | ||
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Trigger> | ||
>(({ children, className, ...props }, ref) => ( | ||
<NavigationMenuPrimitive.Trigger | ||
ref={ref} | ||
className={cn(navigationMenuTriggerStyle(), 'group', className)} | ||
{...props} | ||
> | ||
{children}{' '} | ||
<ChevronDown | ||
aria-hidden="true" | ||
className="relative top-px ml-1 size-3 transition duration-200 group-data-[state=open]:rotate-180" | ||
/> | ||
</NavigationMenuPrimitive.Trigger> | ||
)); | ||
NavigationMenuTrigger.displayName = NavigationMenuPrimitive.Trigger.displayName; | ||
|
||
const NavigationMenuContent = React.forwardRef< | ||
React.ElementRef<typeof NavigationMenuPrimitive.Content>, | ||
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Content> | ||
>(({ className, ...props }, ref) => ( | ||
<NavigationMenuPrimitive.Content | ||
ref={ref} | ||
className={cn( | ||
'left-0 top-0 w-full data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 md:absolute md:w-auto ', | ||
className, | ||
)} | ||
{...props} | ||
/> | ||
)); | ||
NavigationMenuContent.displayName = NavigationMenuPrimitive.Content.displayName; | ||
|
||
const NavigationMenuLink = NavigationMenuPrimitive.Link; | ||
|
||
const NavigationMenuViewport = React.forwardRef< | ||
React.ElementRef<typeof NavigationMenuPrimitive.Viewport>, | ||
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Viewport> | ||
>(({ className, ...props }, ref) => ( | ||
<div className={cn('absolute left-0 top-full flex justify-center')}> | ||
<NavigationMenuPrimitive.Viewport | ||
ref={ref} | ||
className={cn( | ||
'origin-top-center relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 md:w-[var(--radix-navigation-menu-viewport-width)]', | ||
className, | ||
)} | ||
{...props} | ||
/> | ||
</div> | ||
)); | ||
NavigationMenuViewport.displayName = | ||
NavigationMenuPrimitive.Viewport.displayName; | ||
|
||
const NavigationMenuIndicator = React.forwardRef< | ||
React.ElementRef<typeof NavigationMenuPrimitive.Indicator>, | ||
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Indicator> | ||
>(({ className, ...props }, ref) => ( | ||
<NavigationMenuPrimitive.Indicator | ||
ref={ref} | ||
className={cn( | ||
'top-full z-[1] flex h-1.5 items-end justify-center overflow-hidden data-[state=visible]:animate-in data-[state=hidden]:animate-out data-[state=hidden]:fade-out data-[state=visible]:fade-in', | ||
className, | ||
)} | ||
{...props} | ||
> | ||
<div className="relative top-[60%] size-2 rotate-45 rounded-tl-sm bg-border shadow-md" /> | ||
</NavigationMenuPrimitive.Indicator> | ||
)); | ||
NavigationMenuIndicator.displayName = | ||
NavigationMenuPrimitive.Indicator.displayName; | ||
|
||
export { | ||
NavigationMenu, | ||
NavigationMenuContent, | ||
NavigationMenuIndicator, | ||
NavigationMenuItem, | ||
NavigationMenuLink, | ||
NavigationMenuList, | ||
NavigationMenuTrigger, | ||
navigationMenuTriggerStyle, | ||
NavigationMenuViewport, | ||
}; |
Oops, something went wrong.