Remove "Fill Out the Form" button from Contact page #133

Closed
opened 2026-05-18 09:10:45 -05:00 by null · 0 comments
Owner

Change Request

Remove the "Fill Out the Form" button/link from the Contact Us page hero section.

The form is visible immediately below the hero — the anchor link button is unnecessary and adds visual clutter.

Location

src/pages/Contact.jsx — lines around the hero section:

<div className="mb-8">
  <a href="#contact-form" className="inline-flex items-center justify-center rounded-md text-sm font-medium h-10 px-6 bg-primary-cyan text-primary-navy hover:bg-cyan-600 transition-colors">
    Fill Out the Form
  </a>
</div>

Fix

Delete the entire <div className="mb-8"> block containing the anchor link. The form section below already has id="contact-form" but the jump link is no longer needed.

Also consider removing the id="contact-form" anchor from the form section since nothing references it anymore.

## Change Request Remove the "Fill Out the Form" button/link from the Contact Us page hero section. The form is visible immediately below the hero — the anchor link button is unnecessary and adds visual clutter. ## Location `src/pages/Contact.jsx` — lines around the hero section: ```jsx <div className="mb-8"> <a href="#contact-form" className="inline-flex items-center justify-center rounded-md text-sm font-medium h-10 px-6 bg-primary-cyan text-primary-navy hover:bg-cyan-600 transition-colors"> Fill Out the Form </a> </div> ``` ## Fix Delete the entire `<div className="mb-8">` block containing the anchor link. The form section below already has `id="contact-form"` but the jump link is no longer needed. Also consider removing the `id="contact-form"` anchor from the form section since nothing references it anymore.
null added the
P3 Low
frontend
ux
labels 2026-05-18 09:29:54 -05:00
null closed this issue 2026-05-18 09:35:38 -05:00
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: null/Queue-North-Website#133
No description provided.