A simple personal link page and currently used on my own linktree page, inspired by Material You. It is static, so it can be hosted on Vercel without a backend or build command.
Open config.js and edit:
name— display namebio— short descriptionavatar— optional image pathfooter— footer textprimary— main theme colorlinks— add, remove, or reorder link cards
Example:
{
title: "Discord",
description: "Join my community",
url: "https://discord.com/",
icon: "DC"
}You can add as many links as you want.
For a custom icon image:
{
title: "My Site",
description: "Personal website",
url: "https://example.com/",
iconImage: "assets/site-icon.png"
}This project uses plain HTML, CSS, and JavaScript. There is no database, login system, or server-side code.