Starter Prompt Assistance

This commit is contained in:
Leon van Zyl
2025-08-13 12:53:32 +02:00
parent 5741fcc486
commit 69b775096e
6 changed files with 1327 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ import Link from "next/link";
import { Button } from "@/components/ui/button";
import { SetupChecklist } from "@/components/setup-checklist";
import { useDiagnostics } from "@/hooks/use-diagnostics";
import { StarterPromptModal } from "@/components/starter-prompt-modal";
export default function Home() {
const { isAuthReady, isAiReady, loading } = useDiagnostics();
@@ -120,10 +121,11 @@ export default function Home() {
</div>
<div className="p-4 border rounded-lg">
<h4 className="font-medium mb-2">4. Start building</h4>
<p className="text-sm text-muted-foreground">
<p className="text-sm text-muted-foreground mb-3">
Customize the components, add your own pages, and build your
application on top of this solid foundation.
</p>
<StarterPromptModal />
</div>
</div>
</div>