41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
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;
|