Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contacts

[![GitHub](https://img.shields.io/badge/GitHub-181717?logo=github&logoColor=white)](https://github.com/yamcodes/contact.app)
[![GitHub](https://img.shields.io/badge/GitHub-181717?logo=github&logoColor=white)](https://github.com/yamcodes/contacts)

![Cover](assets/cover.png)

Expand Down Expand Up @@ -180,12 +180,12 @@ docker-compose.yml # Local Postgres service

This repo tracks the evolution of the app across different stacks - earlier branches used [Hono](https://hono.dev/) (a TypeScript web framework), while `main` is the current Spring Boot implementation.

| Branch | Summary | Description |
| ------------------------------------------------------------------------------ | ----------------------------- | ----------------------------------------------------------------------------------------------------------- |
| [`hono-web1`](https://github.com/yamcodes/contact.app/tree/hono-web1) | Hypermedia-Driven Application | Server-rendered HTML using links and forms. Full page reloads. Pure hypermedia, no client-side JS. |
| [`hono`](https://github.com/yamcodes/contact.app/tree/hono) | HDA + HTMX | Same architecture as `hono-web1`, enhanced with HTMX for partial updates without JSON or client-side state. |
| [`hono-eta`](https://github.com/yamcodes/contact.app/tree/hono-eta) | HDA (Eta templates) | Same architecture as `hono-web1`, using string-based Eta templates instead of JSX. |
| **[`main`](https://github.com/yamcodes/contact.app/tree/main)** (You're here!) | **HDA + Spring Boot** | **Same architecture, rewritten in Java with Spring Boot, Thymeleaf, and htmx-spring-boot.** |
| Branch | Summary | Description |
| --------------------------------------------------------------------------- | ----------------------------- | ----------------------------------------------------------------------------------------------------------- |
| [`hono-web1`](https://github.com/yamcodes/contacts/tree/hono-web1) | Hypermedia-Driven Application | Server-rendered HTML using links and forms. Full page reloads. Pure hypermedia, no client-side JS. |
| [`hono`](https://github.com/yamcodes/contacts/tree/hono) | HDA + HTMX | Same architecture as `hono-web1`, enhanced with HTMX for partial updates without JSON or client-side state. |
| [`hono-eta`](https://github.com/yamcodes/contacts/tree/hono-eta) | HDA (Eta templates) | Same architecture as `hono-web1`, using string-based Eta templates instead of JSX. |
| **[`main`](https://github.com/yamcodes/contacts/tree/main)** (You're here!) | **HDA + Spring Boot** | **Same architecture, rewritten in Java with Spring Boot, Thymeleaf, and htmx-spring-boot.** |

## License

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<i data-lucide="moon" class="swap-on h-4 w-4"></i>
</label>
<a
href="https://github.com/yamcodes/contact.app"
href="https://github.com/yamcodes/contacts"
target="_blank"
rel="noopener noreferrer"
class="btn btn-ghost btn-sm btn-square shrink-0"
Expand Down
Loading