--- import { getCollection } from "astro:content"; import NameLink from "../components/NameLink.astro"; import "../styles/global.css"; // Get all names from the collection const allNames = await getCollection("names"); const members = allNames.filter(name => name.data.candidate !== true); const candidates = allNames.filter(name => name.data.candidate === true); ---
An exclusive club of geeks that serve their personal homepage from the domain hack to their name. Are you one of us? Join the club by opening a pull request on Github or send us an email at join@namehack.club.