add photo and update donate button
This commit is contained in:
parent
67ea1079d4
commit
75e9055e25
4 changed files with 11 additions and 3 deletions
|
|
@ -12,6 +12,7 @@
|
|||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<title>Missoula Council of the Deaf, Inc.</title>
|
||||
<script src="https://zeffy-scripts.s3.ca-central-1.amazonaws.com/embed-form-script.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
|
|
|
|||
3
client/public/photos/5.jpg
Normal file
3
client/public/photos/5.jpg
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a92d0009e9bf83035e5dbc3e8ee2b9bbfa96cc4d28aa8cb73b291fcb75afe6c0
|
||||
size 570748
|
||||
|
|
@ -119,9 +119,13 @@ const DonateButton: React.FC<{ onClick?: () => void }> = ({ onClick }) => (
|
|||
whileHover={{ scale: 1.05 }}
|
||||
whileTap={{ scale: 0.95 }}
|
||||
>
|
||||
<Link to="/donate" onClick={onClick} className="inline-block bg-yellow-400 text-[#8C1D40] font-bold py-2 px-4 rounded-full hover:bg-yellow-300 transition-colors duration-200 shadow-md">
|
||||
<button
|
||||
zeffy-form-link="https://www.zeffy.com/embed/donation-form/1cbff18e-c057-4fa6-8276-a993037de0bb?modal=true"
|
||||
onClick={onClick}
|
||||
className="inline-block bg-yellow-400 text-[#8C1D40] font-bold py-2 px-4 rounded-full hover:bg-yellow-300 transition-colors duration-200 shadow-md"
|
||||
>
|
||||
Donate
|
||||
</Link>
|
||||
</button>
|
||||
</motion.div>
|
||||
);
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import React, { useState, useEffect } from 'react';
|
||||
import { motion, AnimatePresence } from 'framer-motion';
|
||||
|
||||
const images = ['/photos/1.jpg', '/photos/2.jpg', '/photos/3.jpg', '/photos/4.jpg'];
|
||||
const images = ['/photos/1.jpg', '/photos/2.jpg', '/photos/3.jpg', '/photos/4.jpg', '/photos/5.jpg'];
|
||||
|
||||
const ImageCarousel: React.FC = () => {
|
||||
const [currentIndex, setCurrentIndex] = useState(0);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue