Static landing page for CommentMind (commentmind.com) — an AI service that manages and replies to TikTok comments for Saudi e-commerce businesses. English, pure HTML/CSS/JS, hosted on GitHub Pages.
index.html Main landing page (English)
privacy.html Privacy Policy (English)
terms.html Terms of Service (English)
auth/tiktok/callback/index.html TikTok OAuth callback placeholder
auth/tiktok/account/callback/index.html TikTok account OAuth callback placeholder
assets/css/style.css Shared stylesheet
CNAME Custom domain for GitHub Pages
.nojekyll Disables Jekyll processing on Pages
The early-access form in index.html posts to formsubmit.co (free, no signup) at help@commentmind.com. One-time setup:
- After deploying, submit the form once yourself — formsubmit.co will email an activation link to help@commentmind.com. Click it. All later submissions arrive in that inbox.
- (Optional, recommended) formsubmit.co's activation email also gives you a random alias string — swap the email in the
FORM_ENDPOINTURL for that alias so the address isn't visible in the page source.
-
Sign in to github.com and click New repository (the + icon, top right).
-
Name it e.g.
commentmind-site, set it to Public (required for GitHub Pages on the free plan), and click Create repository (don't add a README — we already have one). -
On your machine, from this folder, run:
git init git add . git commit -m "CommentMind landing site" git branch -M main git remote add origin https://github.com/YOUR_USERNAME/commentmind-site.git git push -u origin main
Replace
YOUR_USERNAMEwith your GitHub username.
- In the repository on GitHub, go to Settings → Pages (left sidebar).
- Under Build and deployment:
- Source: Deploy from a branch
- Branch:
main, folder/ (root)→ click Save.
- Wait 1–2 minutes. The site becomes available at
https://YOUR_USERNAME.github.io/commentmind-site/.
- Still in Settings → Pages, under Custom domain, type
commentmind.comand click Save.- This works together with the
CNAMEfile already in the repo (GitHub may commit/update it automatically — that's fine).
- This works together with the
- Leave the page open; GitHub will show a DNS check that stays pending until Step 4 is done.
- After DNS propagates and the check passes, tick Enforce HTTPS (may take up to 24 h to become available while GitHub issues the TLS certificate).
-
Sign in to godaddy.com → My Products → next to
commentmind.comclick DNS (or Manage DNS). -
Delete any existing
Arecords for@and any existingCNAME/forwarding record forwww(e.g. GoDaddy's "Parked" record). -
Add four A records pointing the apex domain at GitHub Pages' servers:
Type Name Value TTL A @ 185.199.108.153 Default A @ 185.199.109.153 Default A @ 185.199.110.153 Default A @ 185.199.111.153 Default -
Add one CNAME record for
www:Type Name Value TTL CNAME www YOUR_USERNAME.github.io Default Replace
YOUR_USERNAMEwith your GitHub username (note: it's the username domain, not the repository name, and nohttps://). -
Save. Propagation usually takes 10–60 minutes (up to 48 h worst case). You can check with:
nslookup commentmind.com nslookup www.commentmind.com
commentmind.comshould resolve to the four185.199.10x.153addresses, andwwwshould point atYOUR_USERNAME.github.io. -
Back in GitHub Settings → Pages, confirm the DNS check turns green, then enable Enforce HTTPS.
Done — the site is live at https://commentmind.com (with www.commentmind.com redirecting automatically).
Edit the files, then:
git add .
git commit -m "Describe your change"
git pushGitHub Pages redeploys automatically within a minute or two.
.nojekyllprevents GitHub Pages from running Jekyll, so all folders (includingauth/) are served exactly as-is.- The OAuth callback URLs to register in the TikTok Developer Portal are:
https://commentmind.com/auth/tiktok/callback/https://commentmind.com/auth/tiktok/account/callback/
- Contact: help@commentmind.com