diff --git a/README.md b/README.md new file mode 100644 index 0000000..221fb53 --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ +# banana.me static site + +This repository powers your personal static website at: + +``` +https://.banana.me/ +``` + +## Setup + +1. Create a new repo named **pages**. +2. Add a basic `index.html` file (see examples in this repo). +3. Push to the `static-pages` branch: + + ```bash + git checkout -b static-pages + git push -u origin static-pages + ``` + +Your site will be live shortly at `https://.banana.me/` + +## Directory structure + +- `index.html` → Homepage +- `style.css`, images, etc. are supported too + +## Notes + +- Only the `static-pages` branch is served +- Use subdirectories if you want, e.g. `/blog/index.html` +- Full repo path (e.g. `/repo`) is also accessible if needed diff --git a/index.html b/index.html index 9fe12dd..ac5ee39 100644 --- a/index.html +++ b/index.html @@ -1 +1,12 @@ -

Hello from Forgejo Pages

+ + + + + banana.me Site + + + +

Hello from banana.me!

+

This is a personal static site.

+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..80e8687 --- /dev/null +++ b/style.css @@ -0,0 +1,6 @@ +body { + font-family: sans-serif; + background-color: #f4f4f4; + text-align: center; + margin-top: 50px; +}