Account login

This commit is contained in:
augmentedpotato
2026-03-29 17:43:31 -06:00
parent 1c0f55fbe5
commit c048c4bdc3
9 changed files with 708 additions and 30 deletions

View File

@@ -7,10 +7,10 @@ import { useState, useEffect } from "react";
export default function Home() {
//Slideshow images array
const slideshowImages = [
{ src: "/images/home/slideshow/pet1.jpg", alt: "Happy pets" },
{ src: "/images/home/slideshow/pet2.jpg", alt: "Pet supplies" },
{ src: "/images/home/slideshow/pet3.jpg", alt: "Pet grooming" },
{ src: "/images/home/slideshow/pet4.jpg", alt: "Pet food" },
{src: "/images/home/slideshow/pet1.jpg", alt: "Happy pets"},
{src: "/images/home/slideshow/pet2.jpg", alt: "Pet supplies"},
{src: "/images/home/slideshow/pet3.jpg", alt: "Pet grooming"},
{src: "/images/home/slideshow/pet4.jpg", alt: "Pet food"},
];
const [currentSlide, setCurrentSlide] = useState(0);
@@ -25,10 +25,10 @@ export default function Home() {
//Hyperlinks to other pages
const navImages = [
{ src: "/images/home/navimages/adopt.jpg", alt: "Adopt a Pet", link: "/adopt", title: "Adopt a Pet" },
{ src: "/images/home/navimages/store.jpg", alt: "Online Store", link: "/store", title: "Online Store" },
{ src: "/images/home/navimages/appointments.jpg", alt: "Appointments", link: "/appointments", title: "Appointments" },
{ src: "/images/home/navimages/about.jpg", alt: "About Us", link: "/about", title: "About Us" },
{src: "/images/home/navimages/adopt.jpg", alt: "Adopt a Pet", link: "/adopt", title: "Adopt a Pet"},
{src: "/images/home/navimages/store.jpg", alt: "Online Store", link: "/store", title: "Online Store"},
{src: "/images/home/navimages/appointments.jpg", alt: "Appointments", link: "/appointments", title: "Appointments"},
{src: "/images/home/navimages/about.jpg", alt: "About Us", link: "/about", title: "About Us"},
];
return (