Components
Qreatify homepage action card for create-from-framework and import-repository entry points.
Loading preview...
import { GithubIcon } from "lucide-react";
import QreatifyHomeActionCard from "@/components/ui/qreatify-home-action-card";
export default function QreatifyHomeActionCardDemo() {
return (
<div className="grid max-w-3xl gap-3 bg-zinc-950 p-6 md:grid-cols-2">
<QreatifyHomeActionCard />
<QreatifyHomeActionCard
title="Import repo"
description="Continue from existing code."
icon={GithubIcon}
variant="secondary"
/>
</div>
);
}