home page feature part 1

This commit is contained in:
Edd
2025-12-21 23:12:13 +00:00
parent 8a6e0d0255
commit e8ccea4e42
16 changed files with 265 additions and 9405 deletions
+21
View File
@@ -0,0 +1,21 @@
<script setup>
import { cn } from "@/lib/utils";
const props = defineProps({
class: { type: null, required: false },
});
</script>
<template>
<div
data-slot="card"
:class="
cn(
'bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm',
props.class,
)
"
>
<slot />
</div>
</template>