The largest network of marketing professionals in the games industry, from indie to AAA.
This is the static marketing site for gamesgrowth.com.
Plain HTML, CSS, and a sprinkle of JavaScript. No framework, no build step. Hosted on Vercel.
Fonts: Inter and Cal Sans (matching the player.gg type system) plus JetBrains Mono for technical labels.
.
├── index.html Homepage
├── blog/
│ └── introducing-the-games-growth-guild.html Blog post
├── assets/
│ ├── logo-mark.svg GGG mark
│ └── logo-lockup.svg GGG lockup
├── vercel.json Vercel config (clean URLs, headers)
└── README.md This file
- Duplicate
blog/introducing-the-games-growth-guild.htmland rename to your slug - Update the title, meta, post-meta, post-title, post-deck, post-cover, and prose blocks
- Add a new
.blog-cardtoindex.htmlinside the.blog-gridcontainer, pointing at/blog/your-slug - Commit and push. Vercel will redeploy on push to main.
Open index.html directly in a browser, or run any static file server:
npx serve .The site auto deploys to Vercel on push to main. Manual deploy:
vercel deploy --prod