refactor(frontend): changed the style to be boxy and like ccc

This commit is contained in:
2026-06-23 14:24:33 -05:00
parent eea5780bb6
commit 4eef8fa418
60 changed files with 5127 additions and 1022 deletions

View File

@@ -0,0 +1,11 @@
"use client"
import { AspectRatio as AspectRatioPrimitive } from "radix-ui"
function AspectRatio({
...props
}: React.ComponentProps<typeof AspectRatioPrimitive.Root>) {
return <AspectRatioPrimitive.Root data-slot="aspect-ratio" {...props} />
}
export { AspectRatio }