Skip to content

feat(site): add services and contact sections to homepage#754

Merged
skevetter merged 2 commits into
mainfrom
feat/services-contact
Jul 26, 2026
Merged

feat(site): add services and contact sections to homepage#754
skevetter merged 2 commits into
mainfrom
feat/services-contact

Conversation

@skevetter

@skevetter skevetter commented Jul 26, 2026

Copy link
Copy Markdown
Contributor

Adds a Services section to the marketing homepage and a way for teams to reach out.

What's included

  • Services section (#services): Dev Environment Audit, Implementation and Rollout, Support and Migration, with a nav link and footer link.
  • Contact section (#contact): a Netlify Forms contact form (name, work email, company, message) with a honeypot. No backend required.
  • Light/dark theme toggle in the nav, defaulting to the visitor's system preference on first visit and persisting their choice.
  • Responsive navigation: mobile hamburger menu below 992px; on desktop the section links are centered on the page.

Follow-up (not code)

Enable email notifications in the Netlify dashboard (Forms → Settings & notifications) so form submissions are emailed. Submissions are captured regardless.

Summary by CodeRabbit

  • New Features

    • Added persistent light and dark theme support, including system preference detection.
    • Added responsive mobile navigation with an accessible menu toggle.
    • Added a theme toggle with updated accessibility labels and icons.
    • Enhanced the contact form with improved layout, styling, and focus states.
    • Updated footer navigation and branding links.
  • Style

    • Refreshed page layouts, backgrounds, spacing, and responsive behavior.
    • Updated website copy across hero, feature, and process sections.

Add a Services section (audit, implementation, support and migration)
with a Netlify-backed contact form so teams can reach out. Also add a
light/dark theme toggle, a responsive nav with a mobile menu, and center
the section links on desktop.
@netlify

netlify Bot commented Jul 26, 2026

Copy link
Copy Markdown

Deploy Preview for devsydev ready!

Name Link
🔨 Latest commit 67dec95
🔍 Latest deploy log https://app.netlify.com/projects/devsydev/deploys/6a65a68afaa871000886d8f1
😎 Deploy Preview https://deploy-preview-754--devsydev.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify

netlify Bot commented Jul 26, 2026

Copy link
Copy Markdown

Deploy Preview for images-devsy-sh canceled.

Name Link
🔨 Latest commit 67dec95
🔍 Latest deploy log https://app.netlify.com/projects/images-devsy-sh/deploys/6a65a68a158ec4000840ca1b

@coderabbitai

coderabbitai Bot commented Jul 26, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

@skevetter, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 54 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 30b92961-bac7-4670-9fc5-be0e3ff54966

📥 Commits

Reviewing files that changed from the base of the PR and between 45c9095 and 67dec95.

📒 Files selected for processing (1)
  • sites/docs-devsy-sh/public/index.html
📝 Walkthrough

Walkthrough

The landing page adds light/dark theme detection and persistence, responsive mobile navigation, a theme toggle, revised theme-aware styling, expanded Services and Contact sections, updated copy, and revised footer links.

Changes

Landing page experience

Layer / File(s) Summary
Theme foundation
sites/docs-devsy-sh/public/index.html
Theme variables, system preference detection, persisted selection, and theme-aware backgrounds and shadows are added.
Responsive navigation controls
sites/docs-devsy-sh/public/index.html
Header markup and styles add a collapsible mobile menu, theme toggle, responsive layouts, and synchronized aria-expanded state.
Content and contact sections
sites/docs-devsy-sh/public/index.html
Step layouts, Services content, Contact form markup and styling, hero content, section copy, and CTA text are updated.
Metadata and footer links
sites/docs-devsy-sh/public/index.html
Page metadata, footer branding, and footer navigation links are revised while the dynamic year remains.
Estimated code review effort: 4 (Complex) ~45 minutes

Sequence Diagram(s)

sequenceDiagram
  participant Visitor
  participant NavigationDOM
  participant localStorage
  participant SystemPreference
  Visitor->>NavigationDOM: Open mobile navigation
  NavigationDOM->>NavigationDOM: Toggle nav-menu and aria-expanded
  Visitor->>NavigationDOM: Select theme toggle
  NavigationDOM->>localStorage: Store selected theme
  NavigationDOM->>NavigationDOM: Update data-theme and button labels
  NavigationDOM->>SystemPreference: Read preferred color scheme when no stored theme exists
Loading
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly describes the main change by adding Services and Contact sections to the homepage.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (2)
sites/docs-devsy-sh/public/index.html (2)

1261-1276: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Add autocomplete hints to the contact fields.

Browsers can autofill these reliably with explicit tokens.

♻️ Proposed change
-                <input id="name" type="text" name="name" required />
+                <input id="name" type="text" name="name" autocomplete="name" required />
@@
-                <input id="email" type="email" name="email" required />
+                <input id="email" type="email" name="email" autocomplete="email" required />
@@
-              <input id="company" type="text" name="company" />
+              <input id="company" type="text" name="company" autocomplete="organization" />
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@sites/docs-devsy-sh/public/index.html` around lines 1261 - 1276, Add explicit
autocomplete tokens to the contact form fields: use name for the Name input,
email for the Work email input, and organization for the optional Company input.
Update only the inputs identified by their name attributes and preserve their
existing required and optional behavior.

1363-1379: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Menu state isn't reset when crossing the desktop breakpoint.

Opening the menu below 992px and resizing up leaves .open set and aria-expanded="true" on a hidden hamburger; resizing back down re-reveals the menu unexpectedly. A matchMedia listener that clears the state fixes both.

♻️ Proposed change
           menu.querySelectorAll("a").forEach(function (link) {
             link.addEventListener("click", function () {
               menu.classList.remove("open");
               toggle.setAttribute("aria-expanded", "false");
             });
           });
+          var desktop = window.matchMedia("(min-width: 992px)");
+          desktop.addEventListener("change", function (e) {
+            if (e.matches) {
+              menu.classList.remove("open");
+              toggle.setAttribute("aria-expanded", "false");
+            }
+          });
         }
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@sites/docs-devsy-sh/public/index.html` around lines 1363 - 1379, Update the
mobile navigation initialization around toggle, menu, and the existing click
handlers to watch the desktop breakpoint via matchMedia. When the viewport
crosses to 992px or wider, remove the menu’s open class and reset toggle’s
aria-expanded to false, preventing stale state when returning to mobile.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@sites/docs-devsy-sh/public/index.html`:
- Line 1177: Standardize the service-card headings to sentence case by updating
“Dev Environment Audit” and the corresponding headings at the other referenced
locations to match sibling titles such as “Implementation and rollout.”

---

Nitpick comments:
In `@sites/docs-devsy-sh/public/index.html`:
- Around line 1261-1276: Add explicit autocomplete tokens to the contact form
fields: use name for the Name input, email for the Work email input, and
organization for the optional Company input. Update only the inputs identified
by their name attributes and preserve their existing required and optional
behavior.
- Around line 1363-1379: Update the mobile navigation initialization around
toggle, menu, and the existing click handlers to watch the desktop breakpoint
via matchMedia. When the viewport crosses to 992px or wider, remove the menu’s
open class and reset toggle’s aria-expanded to false, preventing stale state
when returning to mobile.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 535e78fb-bea6-4bd4-bd75-62564087e68f

📥 Commits

Reviewing files that changed from the base of the PR and between 0c2ff12 and 45c9095.

📒 Files selected for processing (1)
  • sites/docs-devsy-sh/public/index.html

Comment thread sites/docs-devsy-sh/public/index.html Outdated
Use sentence case for the audit service heading, add autocomplete tokens
to the contact fields, and reset the mobile menu state when the viewport
crosses the desktop breakpoint.
@skevetter
skevetter merged commit a2cd784 into main Jul 26, 2026
26 checks passed
@skevetter
skevetter deleted the feat/services-contact branch July 26, 2026 06:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant