Compare commits

..

3 Commits

Author SHA1 Message Date
b0dd929427 Update README.md
A note has been added to acknowledge the discrepancies between the README.md document and the current state of the Bloom Valley Nursery Demo.
2025-09-20 14:34:29 +00:00
dereklseitz
504333d086 Updates to .gitignore 2025-09-20 09:21:57 -05:00
dereklseitz
1ad601c943 Update first-visit modal: clarify desktop recommendation and demo-only notice 2025-09-11 17:52:07 -05:00
4 changed files with 7 additions and 2 deletions

3
.gitignore vendored
View File

@@ -1,3 +1,6 @@
node_modules/
_site/
.env
.env.*
Image_Credits.txt
_data\communityEvents.js

View File

@@ -1,6 +1,7 @@
# **Bloom Valley Nursery Web Design**
**Note:** This README is the writeup for the original project which was written in HTML, CSS, and vanilla JS. It does not reflect changes made while refactoring and modularizing the demo. This file will be updated with those reflections soon.
### **Table of Contents**
- [Introduction](#introduction)

View File

@@ -1,5 +1,6 @@
/**
* @fileoverview This data file contains all community events for Bloom Valley Nursery Demo.
*
*/
const communityEvents = [

View File

@@ -27,7 +27,7 @@ document.addEventListener("DOMContentLoaded", () => {
let message = document.createElement("p");
message.innerText =
"This site is for demonstration purposes only and is not a real e-commerce store. No purchases can be made.";
"This site is best viewed using a desktop browser. It is for demonstration purposes only and is not a real e-commerce store. No purchases can be made.";
let closeButton = document.createElement("button");
closeButton.innerText = "I Understand";