Open-source "link in bio" page. Zero dependencies, zero build tools, pure HTML/CSS/JS.
Deploy your own links page in 30 seconds.
- Zero dependencies — No npm, no frameworks, no build step
- Visual editor — Add links, drag & drop reorder, live preview, export
- 3 themes — Glass (blur), Solid, Minimal
- 18+ icons — WhatsApp, Instagram, Telegram, X, GitHub, LinkedIn, YouTube, TikTok, Discord, Spotify, and more
- Grid sections — Catalog-style grid layouts (like WhatsApp catalogs)
- i18n — Multi-language support with auto-detection + RTL
- Mobile-first — Responsive, safe-area aware, touch optimized
- SEO — Dynamic meta tags, Open Graph
- Self-hosted — Your data, your page, no tracking
- Fork this repo
- Edit
config.jsonwith your links - Deploy to GitHub Pages / Vercel / Netlify
- Open
editor.htmlin your browser - Add your links, pick a theme, set your avatar
- Click Export JSON or Export HTML
GitHub Pages: Go to Settings → Pages → Source: main branch → Save.
All configuration is in config.json:
{
"name": "Your Name",
"bio": "Short bio",
"avatar": "assets/avatar.png",
"background": {
"type": "image",
"src": "assets/bg.gif",
"overlay": 0.55
},
"theme": {
"style": "glass",
"radius": 16
},
"links": [
{
"title": "Instagram",
"url": "https://instagram.com/you",
"icon": "instagram"
}
],
"sections": [
{
"title": "My Catalog",
"type": "grid",
"columns": 2,
"items": [
{
"title": "Item",
"subtitle": "Description",
"url": "https://...",
"icon": "image"
}
]
}
],
"seo": {
"title": "Page Title",
"description": "Page description"
}
}whatsapp instagram telegram twitter github linkedin youtube tiktok discord spotify threads snapchat email website phone location send image link
| Theme | Description |
|---|---|
glass |
Frosted glass cards with backdrop blur |
solid |
Opaque dark cards |
minimal |
Borderless, clean text links |
| Type | Fields |
|---|---|
image |
src, overlay (0-1) |
color |
color (hex) |
gradient |
gradient (CSS gradient string) |
lyink/
├── index.html # Main page — reads config.json
├── editor.html # Visual editor with live preview
├── config.json # Your configuration
├── icons.svg # SVG icon sprite (18+ platforms)
├── assets/ # Your images (avatar, background)
├── README.md
└── LICENSE
MIT