Everything you need to set up your page on wanna-hire.me and it-iz.me.
it-iz-me repoit-iz-me (lowercase, hyphen)mainmain.jsonAdd a file named main.json in the root of your repo. Your page loads from:
https://raw.githubusercontent.com/YOUR_USERNAME/it-iz-me/main/main.json
All top-level fields are required. Arrays can be empty [] if you prefer.
| Field | Required | Description |
|---|---|---|
| img | Yes | URL of your profile image. Use a raw GitHub URL if hosting in your repo. |
| img_alt | Yes | Accessible description of the image (for screen readers). |
| heading_bold | Yes | Main heading — typically your name or intro. |
| heading_light | Yes | Subheading — role, tagline, or continuation of the intro. |
| desc_1 | Yes | Intro line shown before the tech badges. |
| tech_stack | Yes | Array of skills. Each entry: string (icon = label) or { iconName, visibleName }. |
| desc_2 | Yes | Body text — short bio or skills summary. |
| desc_3 | Yes | Closing line above the CTA buttons. |
| cta_buttons | Yes | Array of buttons. Each: { type, label, href, icon? }. icon is optional. |
| social_links | Yes | Array of social links. Each: { type, label, href }. |
cta_buttons[].icon— Icon for each button. Omit for default (document icon for primary, send for secondary). Format: SI IconName or BI IconName.tech_stack[]— Can be empty array [] if you don't want tech badges. Each entry can be a plain string instead of { iconName, visibleName }.Use SI IconName (Simple Icons) or BI IconName (Bootstrap Icons). Omit prefix → SI assumed. Dots in names use dot (e.g. SI Nextdotjs).
Browse: Simple Icons · Bootstrap Icons
Upload your image to the repo root (or a subfolder) and use the raw URL:
https://raw.githubusercontent.com/YOUR_USERNAME/it-iz-me/main/avatar.png
A full main.json with dummy data for user "void":
{
"img": "https://raw.githubusercontent.com/void/it-iz-me/main/avatar.png",
"img_alt": "Void's profile photo",
"heading_bold": "hi there, i'm void",
"heading_light": ": a developer who builds in the dark.",
"desc_1": "i build stuff with",
"tech_stack": [
{
"iconName": "SI Typescript",
"visibleName": "TypeScript"
},
{
"iconName": "SI React",
"visibleName": "React"
},
{
"iconName": "SI Nextdotjs",
"visibleName": "Next.js"
},
{
"iconName": "SI Rust",
"visibleName": "Rust"
}
],
"desc_2": "I craft clean interfaces and reliable systems. When I'm not coding, I'm probably exploring new tools or contributing to open source.",
"desc_3": "Looking for a developer who ships? Let's talk — I'm open to interesting projects and collaborations.",
"cta_buttons": [
{
"type": "primary",
"label": "View Portfolio",
"href": "https://void.dev",
"icon": "SI FileText"
},
{
"type": "secondary",
"label": "Get in touch",
"href": "mailto:void@example.com",
"icon": "BI Send"
}
],
"social_links": [
{
"type": "SI Github",
"label": "GitHub",
"href": "https://github.com/void"
},
{
"type": "SI x",
"label": "X",
"href": "https://x.com/void"
},
{
"type": "SI Linkedin",
"label": "LinkedIn",
"href": "https://linkedin.com/in/void"
}
]
}it-iz-me, publicmainmain.json in repo rootimg is a full URL (raw GitHub if in repo)SI / BI formatYour page: https://wanna-hire.me/YourGitHubUsername