Conversation
There was a problem hiding this comment.
Pull request overview
Adds a standalone, mobile-first marketing microsite for Grab N Go Mart under grab-n-go-mart-site/, including conversion-focused sections and basic local SEO/structured data.
Changes:
- Created a single-page marketing site (
index.html) with CTAs, sections, and JSON-LDConvenienceStoreschema. - Added mobile-first styling (
styles.css) including layout grids, cards, and a sticky mobile CTA bar. - Added a small client script (
script.js) to populate the current year in the footer.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 6 comments.
| File | Description |
|---|---|
| grab-n-go-mart-site/index.html | Page structure, CTAs, local SEO meta, and JSON-LD structured data. |
| grab-n-go-mart-site/styles.css | Core theme tokens and responsive/mobile-first layout + components. |
| grab-n-go-mart-site/script.js | Footer year injection. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| html { | ||
| scroll-behavior: smooth; | ||
| } | ||
|
|
There was a problem hiding this comment.
scroll-behavior: smooth can be problematic for users who prefer reduced motion. Add a @media (prefers-reduced-motion: reduce) override to disable smooth scrolling (and ideally also reduce/disable transform transitions/animations) to improve accessibility.
| @media (prefers-reduced-motion: reduce) { | |
| html { | |
| scroll-behavior: auto !important; | |
| } | |
| *, *::before, *::after { | |
| animation: none !important; | |
| transition: none !important; | |
| } | |
| } |
|
@copilot apply changes based on the comments in this thread |
…ed-motion, fallback year Agent-Logs-Url: https://github.com/shiva1837/C-CourseWork/sessions/e2450163-e16e-4523-bb8e-757ff5bbebda Co-authored-by: shiva1837 <128337863+shiva1837@users.noreply.github.com>
Applied all 6 review suggestions in commit
|
Motivation
Description
grab-n-go-mart-site/containingindex.html,styles.css, andscript.jswith the full page structure and assets.Call Now) and secondary CTA (Get Directions), trust row, about, products (category cards), differentiators, testimonials, location/store info with map placeholder, final CTA band, footer, and a sticky mobile CTA bar.ConvenienceStoreJSON-LD including name, telephone, address, opening hours, and aggregate rating.Testing
node --check grab-n-go-mart-site/script.jsto validate the small client script and it completed successfully.wc -l grab-n-go-mart-site/index.html grab-n-go-mart-site/styles.css grab-n-go-mart-site/script.js, which succeeded.Codex Task