1// nbrimble.dev — built by hand
2import { motion } from "framer-motion";
3
4const stack = ["Next.js", "React", "Three.js"];
5
6export function Site({ idea }: Brief) {
7 const build = useCraft(idea, { stack, motion: true });
8
9 return <Launch when={build.ready} />;
10}