A collection of different landing page/homepage designs for an artist website. Each folder represents a different version that can be previewed directly via GitHub Pages.
uloco/
├── v1/ # Version 1 - [description]
│ └── index.html
├── v2/ # Version 2 - [description]
│ └── index.html
└── ...
Each version is accessible via GitHub Pages:
- Version 1: https://dimidumo.github.io/uloco/v1/
- Version 2: https://dimidumo.github.io/uloco/v2/
- (add more as you create them)
- Create a new folder for each version (e.g.,
v3/) - Add an
index.htmlfile inside - Push to main branch
- Access via
https://dimidumo.github.io/uloco/<folder-name>/
To test locally, you can use any static file server:
# Using Python
python -m http.server 8000
# Using Node.js (npx)
npx serveThen navigate to http://localhost:8000/v1/ etc.