Minimalist Landing Page for The Enlightenment

Go to github.com/pimec25/The-Enlightenment, click the existing index.html → pencil icon to edit → then use the upload option to replace it with this file. Commit and GitHub Pages redeploys automatically.


One thing worth flagging — are you having trouble getting the site to show at pimecassolutions.com? If the domain still isn't resolving correctly after the DNS changes, share what you're seeing and I can help troubleshoot directly.

The site still isn't showing at pimecassolutions.com, how do I fix it
12:38 AM

Also check that your CNAME file (not CNAME.txt) contains exactly:

text
pimecassolutions.com

with no extra spaces or .txt extension. The CNAME.txt file should also be deleted — only the plain CNAME file should remain.

Once you upload index.html and commit, GitHub Pages will rebuild automatically within 60 seconds and pimecassolutions.com will go live.

Recheck for error
Jul 9, 12:49 AM

The problem is clear — the index.html is still not in the repo correctly. The file keeps getting saved as !DOCTYPE html.txt instead of index.html. This happens when the browser tries to open the HTML file instead of downloading it.

Here's how to download it correctly and upload it:

Step 1 — Download the file correctly

Click the index.html attachment above → when it opens in your browser, do File → Save As and make sure the filename is exactly index.html (not !DOCTYPE html.txt, not index.html.txt). Save it to your Desktop.

Step 2 — Delete the bad file from GitHub

  1. Go to github.com/pimec25/The-Enlightenment

  2. Click on !DOCTYPE html.txt

  3. Click the trash/delete icon (top right of the file view)

  4. Commit the deletion

Step 3 — Upload the correct file

  1. Back in the repo, click Add file → Upload files

  2. Drag your index.html from the Desktop

  3. Before committing, confirm the filename shown is index.html — if it shows anything else, rename it on your Desktop first and try again

  4. Click Commit changes

Step 4 — Also upload the 4 image files

The images need to be there too or the cover art won't load:

  • press-photo.jpg

  • twisted-me.jpg

  • legacy-in-motion.jpg

  • fell-in-love-ai-girl.jpg

Right-click each image on pimecassolutionscom.pplx.app → Save image as → use the exact filename above.

Once index.html commits successfully you'll see it listed in the repo and pimecassolutions.com will go live within 60 seconds.

Perform another check
Jul 9, 1:56 AM

Good progress — index.html is in the repo and the domain is resolving. The black screen is because the image files have wrong filenames. The HTML references lowercase hyphenated names but the repo has a mix. Specifically, twisted-me.jpg is missing — it was deleted — and Legacy In Motion.jpg has spaces in the name instead of legacy-in-motion.jpg.

The text and layout are actually there (dark background is correct), but the images aren't loading. Here's the exact fix:

What needs to be corrected in the repo

Delete these wrongly-named files:

  • Legacy In Motion.jpg (spaces in filename — won't work)

Re-upload these files with exact filenames:

Must be named exactlyStatus
twisted-me.jpgMissing — was deleted
legacy-in-motion.jpgWrong name in repo (Legacy In Motion.jpg)
fell-in-love-ai-girl.jpg✅ Correct
press-photo.jpg✅ Correct

Steps

  1. Go to github.com/pimec25/The-Enlightenment

  2. Click Legacy In Motion.jpg → trash icon → commit deletion

  3. Click Add file → Upload files

  4. Upload twisted-me.jpg and legacy-in-motion.jpg (right-click each on pimecassolutionscom.pplx.app → Save image as → use exact lowercase hyphenated filenames)

  5. Commit — site rebuilds in ~60 seconds

Once those two files are in with the correct names, the full page will render properly at pimecassolutions.com.

Perform another check
2:06 AM

How to replace it correctly

The key issue is making sure the full file downloads — do not open it in your browser first. Here's the safest method:

  1. Click the index.html attachment above

  2. Right-click the download button → Save link as → save as index.html to your Desktop

  3. Go to github.com/pimec25/The-Enlightenment

  4. Click the existing index.html in the repo

  5. Click the pencil (edit) icon

  6. Scroll to the top, select all the text (Ctrl+A / Cmd+A) and delete it

  7. Open the downloaded index.html in a text editor (Notepad on Windows, TextEdit on Mac), select all, copy

  8. Paste into the GitHub editor

  9. Click Commit changes

This guarantees the full 1,038-line file goes in rather than an incomplete version. Once committed, pimecassolutions.com will update within 60 seconds and the full page will render.