updates
This commit is contained in:
+10
-9
@@ -19,6 +19,8 @@ export default function Homepage() {
|
||||
const isTouchDevice = () =>
|
||||
"ontouchstart" in window || navigator.maxTouchPoints > 0;
|
||||
|
||||
const photos = [corvallis, panic, hozier, seal_rock, yaquina_lighthouse, newberg_tree, newberg_tractor];
|
||||
|
||||
const [showConfirm, setShowConfirm] = useState(false);
|
||||
const [showConfirm2, setShowConfirm2] = useState(false);
|
||||
const [showConfirm3, setShowConfirm3] = useState(false);
|
||||
@@ -116,17 +118,14 @@ export default function Homepage() {
|
||||
<h1>Will you be my Valentine? 💖</h1>
|
||||
|
||||
<div className="photos">
|
||||
<div className="photo">
|
||||
<img src={newberg_tree} alt="Photo 1" />
|
||||
</div>
|
||||
<div className="photo">
|
||||
<img src={hozier} alt="Photo 1" />
|
||||
</div>
|
||||
<div className="photo">
|
||||
<img src={panic} alt="Photo 1" />
|
||||
{photos.map((photo, index) => (
|
||||
<div className="photo" key={index}>
|
||||
<img src={photo} alt={`Photo ${index + 1}`} />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
|
||||
<div className="buttons">
|
||||
<button className="yes" onClick={handleAccept}>
|
||||
Yes 💕🥳
|
||||
@@ -209,7 +208,9 @@ export default function Homepage() {
|
||||
<dialog ref={dialogRef} className="modal">
|
||||
<h2>How to Decline Offer:</h2>
|
||||
<p>
|
||||
Offer can only be declined in person at your nearest Blockbuster
|
||||
Return all Arc'teryx gear aquired from Nick's wardrobe.
|
||||
|
||||
After returning Arc'teryx gear, offer can only be declined in person at your nearest Blockbuster
|
||||
location*
|
||||
</p>
|
||||
<p>
|
||||
|
||||
Reference in New Issue
Block a user