Implemented reusable UI components including AlertDialog, Accordion, Breadcrumb, Button, Card, and Calendar. Added essential assets and SVG icons for improved interface design. Integrated a base homepage layout with responsive grid structure.
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
"use client"
|
|
|
|
import * as AspectRatioPrimitive from "@radix-ui/react-aspect-ratio"
|
|
|
|
function AspectRatio({
|
|
...props
|
|
}: React.ComponentProps<typeof AspectRatioPrimitive.Root>) {
|
|
return <AspectRatioPrimitive.Root data-slot="aspect-ratio" {...props} />
|
|
}
|
|
|
|
export { AspectRatio }
|