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
@@ -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-action"
:class="
cn(
'col-start-2 row-span-2 row-start-1 self-start justify-self-end',
props.class,
)
"
>
<slot />
</div>
</template>