Spaces:
Runtime error
Runtime error
| 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> | |
| ); | |
| }; | |