Content & media - Replace placeholder slides with optimized real estate photos (img/gallery) - Rebuild hero video from the HD intro clip + drone "common area" clips (gate -> vineyard -> home front -> Vineyard sign -> pavilion -> fountain), cutting the private backyard segment; add mobile variant + poster - Add "Community & Common Areas" aerial gallery and a community map - Galleries split strictly by style: Vineyard = Tuscan homes only, Custom Homes = non-Tuscan estates HOA / Homeowner Information - Real board roster (sourced from pinecreekhoa.com) in a responsive table - Homeowner Information document library (CC&Rs, Vineyard covenants, safety rules, architectural review form, delinquency policy, event reimbursement) linking the live PDFs; Premier Management Company reference - Real general contact email Design & UX - Modern full-screen video hero with overlay, sticky nav, refined typography - Click-to-zoom lightbox for all galleries (keyboard + swipe) - Google Maps embed in the Kannapolis section - Favicon set generated from the Pine Creek emblem (svg/png/ico) - Positive reframe of the Custom Homes copy + lot-availability note - SEO/Open Graph meta, lazy-loaded images, responsive board/doc layouts Housekeeping - SCSS source kept in sync (new partials: hero, sections, gallery, board, features); remove stale placeholders, old.index.php, and map artifact - Add .gitignore (.DS_Store, .claude/, css map); fix docs (index.php -> index.html) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
3.0 KiB
3.0 KiB
Pine Creek website — quick orientation for AI coding agents
This is a small static-ish website whose source lives at the repository root. Keep suggestions focused, minimal, and specific to the existing patterns.
-
Entry / what to edit
index.htmlis the site's single page (nav, hero, sections, HOA board table, contact, footer). Edit content/structure here.css/main.cssis the served stylesheet and is edited directly.css/main.scss+css/components/partials (_nav.scss,_hero.scss,_sections.scss,_gallery.scss,_board.scss) are the SCSS source, kept in sync by hand. No build tooling is present locally; if you have Dart Sass, compile withsass css/main.scss css/main.css.js/main.jsis the single client-side script — it controls the hamburger/nav, smooth-scroll, and the photo galleries (array-based fade carousel with arrows, dots, autoplay, and swipe).
-
Architecture & patterns (observable)
- No framework/tooling files found (no package.json, build scripts). The project is organized as plain HTML/CSS/JS served from
index.php. - SCSS pattern: variables at top of
main.scss(colors, breakpoints), mixins for fonts (Libre,Lato), and partials undercss/components/imported bymain.scss. - JS pattern: single-file imperative DOM manipulation (
document.getElementById,querySelector, event handlers). Useconst/let, short arrow functions and maintain global-scope structure similar tojs/main.js. - Static assets: optimized photos live in
img/gallery/(referenced explicitly inindex.html); the hero video isimg/hero.mp4/img/hero-mobile.mp4withimg/hero-poster.jpg.
- No framework/tooling files found (no package.json, build scripts). The project is organized as plain HTML/CSS/JS served from
-
Development / preview notes (inferred)
- No CI or build discovered. To preview locally you can serve the folder with a simple server. A safe, minimal option: run
php -S localhost:8000from the project root and openhttp://localhost:8000/. - SCSS is present but not compiled by repo tooling. If modifying SCSS, compile to
css/main.cssusing a local tool (example):sass css/main.scss css/main.css(assumption: developer will run this locally).
- No CI or build discovered. To preview locally you can serve the folder with a simple server. A safe, minimal option: run
-
Conventions and gotchas to follow when changing code
- Keep CSS partials modular. Add new component styles under
css/components/and import them incss/main.scssrather than editing compiledcss/main.cssdirectly. - JS uses simple DOM IDs/classes; prefer selecting elements by the same IDs/classes and follow the existing event-handler pattern (small helpers like
toggleNav,closeNav,scrollToTarget, and the.galleryinitializer).
- Keep CSS partials modular. Add new component styles under
-
When merging or editing
.github/copilot-instructions.md- Preserve any human-authored guidance already present. If adding new items, keep them concise and cite files (e.g.
index.php,css/main.scss,css/components/_nav.scss,js/main.js).
- Preserve any human-authored guidance already present. If adding new items, keep them concise and cite files (e.g.
If anything above is unclear or you want more detail (build commands, preferred local dev workflow, or to add sample sass npm scripts), tell me which parts to expand or confirm and I will update this file.