import { Button } from "~/components/ui/button"; import type { Data } from "./+data"; import { useData } from "~/renderer/hooks"; import Link from "~/renderer/link"; import Footer from "~/components/containers/footer"; import ProjectCard from "~/components/containers/project-card"; const HomePage = () => { const { projects } = useData(); return ( <>

Create and Share Web Snippets

Collaborate with Ease, Share with the World

Community Projects

{projects.map((project) => ( ))}