Essentially a slightly-more-involved LinkTree alternative. Built with Astro. Here's how you can make it your own, assuming you're using Github pages.
Stored as .mdx files within src/blocks/, these are the basic units. They contain simple front-matter and lists of links that are displayed alongside the block.
The remainder of site data is populated from src/config.json. This should be relatively self-explanatory. "links" provided here appear alongside the name at the top. "avatar" should refernece a file in the src/assets/ folder. "pages.user" is your GitHub user or organization and "pages.repo" is the pages repostiory.
Finally, you should modify your astro.config.mts file as follows...
export default defineConfig({
integrations: [icon(), mdx()],
site: '<YOUR GITHUG PAGES SITE>'
});