Remove company header and add Why Piha? section (#6)
Deploy Beta / unit-tests (push) Successful in 4s
Deploy Beta / docker (push) Successful in 9s
Deploy Beta / deploy-beta (push) Successful in 49s

## Summary

- Drop the company_site nav (logo, Home, Web Design, Contact) from the shortener chrome — that header belongs on aimloperations.com, not `piha.lc`
- Add a **Why Piha?** section: Quenya (Tolkien High Elvish) *pia* / *pitya* / *pincë* / *picina* means little / small; a short link is a little path
- Footer and Request access / Contact CTAs stay

Closes #5.

## Test plan

- [ ] `cd site && uv run python manage.py test`
- [ ] `GET /` has no top header; Why Piha? is on the page
- [ ] Request access / Contact still go to aimloperations.com/contact
- [ ] Debug mint page still works without the nav
- [ ] `GET /<code>` still 302

Reviewed-on: #6
This commit was merged in pull request #6.
This commit is contained in:
2026-08-30 13:04:56 -07:00
parent ccb4d0097d
commit e879d4888f
4 changed files with 18 additions and 28 deletions
+3
View File
@@ -262,8 +262,11 @@ class RedirectTests(TestCase):
self.assertEqual(response.status_code, 200)
self.assertContains(response, "piha.lc")
self.assertContains(response, "Request access")
self.assertContains(response, "Why Piha?")
self.assertContains(response, "Quenya")
self.assertContains(response, "aimloperations.com")
self.assertContains(response, "Contact")
self.assertNotContains(response, "<nav")
self.assertNotContains(response, "Create a short link")
def test_click_row_and_count(self):