creating index for portfolio sites

This commit is contained in:
2025-11-17 23:13:11 -07:00
commit e4cd0735ef
6 changed files with 652 additions and 0 deletions

40
assets/js/data.js Normal file
View File

@@ -0,0 +1,40 @@
const sitesDirectory = [
{
label: "portfolio beta",
url: "https://beta.portfolio.dheerajg.me",
ipv6: ["IPV6 only site"],
remarks: "I'm not a frontend developer but I sometimes use AI for frontend tasks and I dont want to break whats working hence this.",
},
{
label: "portfolio",
url: "https://portfolio.dheerajg.me",
ipv6: ["IPV6 only site"],
remarks: "This is the stable version of my portfolio site.",
},
{
label: "git",
url: "https://git.dheerajg.me",
ipv6: ["IPV6 only site"],
remarks: "well I don't know what to write here apart from its my own git hosting service.",
},
{
label: "resume",
url: "https://resume.dheerajg.me",
ipv4: ["This runs dual stack"],
remarks: "turns out lot of folks still run just IPV4, so made cloudflare tunnel.",
},
{
label: "project documentation",
url: "https://projectdoc.dheerajg.me",
ipv6: ["IPV6 only site"],
remarks: "This is the documentation for my projects, I try to keep it updated I'll try to put some in public .",
},
{
label: "portfolio minimal",
url: "https://v6.min.portfolio.dheerajg.me",
ipv6: ["IPV6 only site"],
remarks: "I have an 15 year old device that isnt able to render modern website so I decided to make a minimal version of my portfolio",
}
];
window.sitesDirectory = sitesDirectory;