Card Demo
v3cn/card-demoFreeExample
Example of the Card component.
Install it
npx shadcn@latest add https://v3cn.vineet.pro/r/card-demo.jsonSource
1"use client";2import Image from "next/image";3import { CardContainer, CardItem } from "@/components/card";456export default function Home() {7 return (8 <>9 <div className="flex justify-center items-center h-fit py-7 w-full px-2 ">10 <div className="relative cursor-pointer animate-float md:block mr-8">11 <CardContainer className=" cursor-pointer">12 <div className="px-8 py-7 max-w-[400px] border-solid gap-5 bg-black flex flex-col justify-start item-center border-2 rounded-2xl">13 <CardItem>14 <Image15 src="https://v3cn.vineet.pro/image/V.png"16 alt="hvbjn"17 width={400}18 height={400}19 className="rounded-[3rem]"20 />21 </CardItem>2223 <div className="px-4 flex flex-col justify-center items-start gap-5">24 <h1 className="text-4xl text-white font-bold">V3cn</h1>2526 <h4 className="text-lg text-white">27 Here you will get components which you wont get anywhere.28 </h4>2930 <p className="text-purple-400">Made by Vineet</p>31 </div>32 </div>33 </CardContainer>34 </div>35 </div>36 </>3738 );39}
What it pulls in
Other registry items
Files it writes
More from v3cn
All 6 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| GitHub Graph Demogithub-demo | v3cn | Examples | Free | no deps |
