Spaces:
Sleeping
Sleeping
File size: 891 Bytes
64c5e26 f9d7874 64c5e26 ca314ba 64c5e26 ca314ba 64c5e26 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import {
Card,
CardDescription,
CardHeader,
CardTitle
} from "@/components/ui/card";
import { LightBulbIcon } from "./Icons";
export const HeroCards = () => {
return (
<div className="hidden lg:flex flex-row flex-wrap gap-8 relative w-[700px] h-[500px]">
{/* Service */}
<Card className="absolute w-[350px] -right-[10px] bottom-[35px] drop-shadow-xl shadow-black/10 dark:shadow-white/10">
<CardHeader className="space-y-1 flex md:flex-row justify-start items-start gap-4">
<div className="mt-1 bg-primary/20 p-1 rounded-2xl">
<LightBulbIcon />
</div>
<div>
<CardTitle>IMAGE</CardTitle>
<CardDescription className="text-md mt-2">
Some nice image conveying DocVerifyRAG use
</CardDescription>
</div>
</CardHeader>
</Card>
</div>
);
};
|