From 8a59790f63179c3deefdb08755be4146dd827aac Mon Sep 17 00:00:00 2001 From: Stanislav Marek Date: Sat, 13 Jun 2026 23:20:45 +0200 Subject: [PATCH 1/4] Add Acme Tools static site --- about.html | 18 ++++++++++++++++++ contact.html | 18 ++++++++++++++++++ index.html | 18 ++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 about.html create mode 100644 contact.html create mode 100644 index.html diff --git a/about.html b/about.html new file mode 100644 index 0000000..d50b781 --- /dev/null +++ b/about.html @@ -0,0 +1,18 @@ + + + + + + About Acme Tools + + + +
+

About Acme Tools

+

We build practical tools for founders, maintainers, and small product teams.

+
+ + diff --git a/contact.html b/contact.html new file mode 100644 index 0000000..338034c --- /dev/null +++ b/contact.html @@ -0,0 +1,18 @@ + + + + + + Contact Acme Tools + + + +
+

Contact Acme Tools

+

Email us at hello@example.com for product questions.

+
+ + diff --git a/index.html b/index.html new file mode 100644 index 0000000..2de9dd3 --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ + + + + + + Welcome to Acme Tools + + + +
+

Welcome to Acme Tools

+

Acme Tools helps small teams ship simple software faster.

+
+ + From ffaa15ef408a328b83acfc94fc8ce68699594386 Mon Sep 17 00:00:00 2001 From: Stanislav Marek Date: Sun, 14 Jun 2026 09:02:32 +0200 Subject: [PATCH 2/4] Improve Acme Tools static pages --- about.html | 36 +++++++++++--- contact.html | 37 +++++++++++--- index.html | 36 +++++++++++--- styles.css | 135 +++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 223 insertions(+), 21 deletions(-) create mode 100644 styles.css diff --git a/about.html b/about.html index d50b781..6ed8eeb 100644 --- a/about.html +++ b/about.html @@ -3,16 +3,38 @@ + About Acme Tools + - -
-

About Acme Tools

-

We build practical tools for founders, maintainers, and small product teams.

+ +
+
+

About the team

+

About Acme Tools

+

We build practical tools for founders, maintainers, and small product teams.

+
+
+
+

Small-team focus

+

Interfaces stay direct so teams can make decisions without extra process.

+
+
+

Maintainer friendly

+

Every workflow favors clear ownership, visible status, and low setup cost.

+
+
+
Purpose-built tools for focused software teams.
diff --git a/contact.html b/contact.html index 338034c..77e58a7 100644 --- a/contact.html +++ b/contact.html @@ -3,16 +3,39 @@ + Contact Acme Tools + - -
-

Contact Acme Tools

-

Email us at hello@example.com for product questions.

+ +
+
+

Start a conversation

+

Contact Acme Tools

+

Email us at hello@example.com for product questions.

+ hello@example.com +
+
+
+

Product questions

+

Share what your team is shipping and where the workflow feels slow.

+
+
+

Founder support

+

Ask about lightweight tools for planning, release notes, and handoffs.

+
+
+
We respond to practical product questions.
diff --git a/index.html b/index.html index 2de9dd3..119e390 100644 --- a/index.html +++ b/index.html @@ -3,16 +3,38 @@ + Welcome to Acme Tools + - -
-

Welcome to Acme Tools

-

Acme Tools helps small teams ship simple software faster.

+ +
+
+

Simple software for focused teams

+

Welcome to Acme Tools

+

Acme Tools helps small teams ship simple software faster.

+
+
+
+

Practical planning

+

Keep product work visible, scoped, and ready for handoff.

+
+
+

Faster delivery

+

Turn recurring release chores into clear team routines.

+
+
+
Built for founders, maintainers, and small product teams.
diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..0c4e854 --- /dev/null +++ b/styles.css @@ -0,0 +1,135 @@ +:root { + color-scheme: light; + --ink: #1f2933; + --muted: #5b6775; + --line: #d7dee8; + --paper: #f7f9fc; + --surface: #ffffff; + --accent: #256f8c; + --accent-strong: #174f65; +} + +* { + box-sizing: border-box; +} + +body { + min-height: 100vh; + margin: 0; + color: var(--ink); + background: var(--paper); + font-family: Arial, Helvetica, sans-serif; + line-height: 1.6; +} + +.site-header { + display: flex; + align-items: center; + justify-content: space-between; + gap: 1rem; + padding: 1rem clamp(1rem, 4vw, 3rem); + border-bottom: 1px solid var(--line); + background: var(--surface); +} + +.brand { + color: var(--accent-strong); + font-weight: 700; + text-decoration: none; +} + +nav { + display: flex; + flex-wrap: wrap; + gap: 0.75rem; +} + +nav a, +.button-link { + color: var(--accent-strong); + font-weight: 700; +} + +nav a { + text-decoration: none; +} + +nav a:hover, +nav a:focus, +.button-link:hover, +.button-link:focus { + text-decoration: underline; +} + +.page-shell { + width: min(100%, 960px); + margin: 0 auto; + padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem); +} + +.hero { + padding: clamp(2rem, 5vw, 4rem); + border: 1px solid var(--line); + border-radius: 6px; + background: var(--surface); +} + +.hero.compact { + padding-block: clamp(1.5rem, 4vw, 3rem); +} + +.eyebrow { + margin: 0 0 0.5rem; + color: var(--accent); + font-size: 0.85rem; + font-weight: 700; + text-transform: uppercase; +} + +h1, +h2, +p { + margin-top: 0; +} + +h1 { + margin-bottom: 0.75rem; + font-size: clamp(2rem, 5vw, 3.5rem); + line-height: 1.1; +} + +h2 { + margin-bottom: 0.5rem; + font-size: 1.1rem; +} + +.hero p, +article p, +footer { + color: var(--muted); +} + +.content-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); + gap: 1rem; + margin-top: 1rem; +} + +article { + padding: 1.25rem; + border: 1px solid var(--line); + border-radius: 6px; + background: var(--surface); +} + +.button-link { + display: inline-block; + margin-top: 0.5rem; +} + +footer { + padding: 1.5rem clamp(1rem, 4vw, 3rem); + border-top: 1px solid var(--line); + text-align: center; +} From 01ede8953ec031120142069e79c646ebadd13887 Mon Sep 17 00:00:00 2001 From: Stanislav Marek Date: Sun, 14 Jun 2026 09:04:56 +0200 Subject: [PATCH 3/4] Refine Acme Tools page structure --- about.html | 17 ++++++++++++--- contact.html | 22 +++++++++++++++++--- index.html | 18 +++++++++++++--- styles.css | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 106 insertions(+), 9 deletions(-) diff --git a/about.html b/about.html index 6ed8eeb..fb98235 100644 --- a/about.html +++ b/about.html @@ -11,14 +11,17 @@ + -
+

About the team

About Acme Tools

@@ -34,6 +37,14 @@

Maintainer friendly

Every workflow favors clear ownership, visible status, and low setup cost.

+
+

How we judge useful software

+
    +
  1. It should explain current work without a meeting.
  2. +
  3. It should make the next decision easier to see.
  4. +
  5. It should stay small enough for busy teams to maintain.
  6. +
+
Purpose-built tools for focused software teams.
diff --git a/contact.html b/contact.html index 77e58a7..a967813 100644 --- a/contact.html +++ b/contact.html @@ -11,14 +11,17 @@ + -
+

Start a conversation

Contact Acme Tools

@@ -35,6 +38,19 @@

Founder support

Ask about lightweight tools for planning, release notes, and handoffs.

+
+

What helps us respond

+
+
+
Team size
+
Tell us how many people share the product workflow.
+
+
+
Main blocker
+
Point to the planning, shipping, or handoff step that slows you down.
+
+
+
We respond to practical product questions.
diff --git a/index.html b/index.html index 119e390..cb16486 100644 --- a/index.html +++ b/index.html @@ -11,18 +11,22 @@ + -
+

Simple software for focused teams

Welcome to Acme Tools

Acme Tools helps small teams ship simple software faster.

+ Start with Acme Tools
@@ -34,6 +38,14 @@

Faster delivery

Turn recurring release chores into clear team routines.

+
+

Built around small-team rhythm

+
    +
  1. Capture the next product move in one place.
  2. +
  3. Turn the move into a short, testable checklist.
  4. +
  5. Ship, review, and keep the next handoff clear.
  6. +
+
Built for founders, maintainers, and small product teams.
diff --git a/styles.css b/styles.css index 0c4e854..1d0f7f6 100644 --- a/styles.css +++ b/styles.css @@ -22,6 +22,22 @@ body { line-height: 1.6; } +.skip-link { + position: absolute; + left: 1rem; + top: 1rem; + z-index: 1; + transform: translateY(-150%); + padding: 0.5rem 0.75rem; + border-radius: 4px; + background: var(--accent-strong); + color: #ffffff; +} + +.skip-link:focus { + transform: translateY(0); +} + .site-header { display: flex; align-items: center; @@ -39,9 +55,16 @@ body { } nav { + min-width: 0; +} + +nav ul { display: flex; flex-wrap: wrap; gap: 0.75rem; + margin: 0; + padding: 0; + list-style: none; } nav a, @@ -116,6 +139,24 @@ footer { margin-top: 1rem; } +.workflow { + margin-top: 1rem; + padding: 1.5rem; + border-left: 4px solid var(--accent); + background: var(--surface); +} + +.workflow ol, +.workflow dl { + margin-bottom: 0; + padding-left: 1.25rem; +} + +.workflow li + li, +.workflow div + div { + margin-top: 0.5rem; +} + article { padding: 1.25rem; border: 1px solid var(--line); @@ -133,3 +174,20 @@ footer { border-top: 1px solid var(--line); text-align: center; } + +@media (max-width: 620px) { + .site-header { + align-items: flex-start; + flex-direction: column; + } + + nav ul { + gap: 0.5rem 1rem; + } + + .hero, + .workflow, + article { + padding: 1rem; + } +} From 150a1b0298ce791832b2bec7c4f4356e1a758bdb Mon Sep 17 00:00:00 2001 From: Stanislav Marek Date: Sun, 14 Jun 2026 09:06:52 +0200 Subject: [PATCH 4/4] Reduce static page overlap --- about.html | 8 ++++---- contact.html | 8 ++++---- index.html | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/about.html b/about.html index fb98235..e89467c 100644 --- a/about.html +++ b/about.html @@ -16,16 +16,16 @@ Acme Tools

About the team

-

About Acme Tools

-

We build practical tools for founders, maintainers, and small product teams.

+

About Acme Tools

+

We build practical tools for founders, maintainers, and small product teams.

diff --git a/contact.html b/contact.html index a967813..8df7a60 100644 --- a/contact.html +++ b/contact.html @@ -16,16 +16,16 @@ Acme Tools

Start a conversation

-

Contact Acme Tools

-

Email us at hello@example.com for product questions.

+

Contact Acme Tools

+

Email us at hello@example.com for product questions.

hello@example.com
diff --git a/index.html b/index.html index cb16486..baab48e 100644 --- a/index.html +++ b/index.html @@ -16,16 +16,16 @@ Acme Tools

Simple software for focused teams

-

Welcome to Acme Tools

-

Acme Tools helps small teams ship simple software faster.

+

Welcome to Acme Tools

+

Acme Tools helps small teams ship simple software faster.

Start with Acme Tools