diff --git a/backend/src/main/resources/db/migration/V2__seed_data.sql b/backend/src/main/resources/db/migration/V2__seed_data.sql
index 3134a995..f43fc3f8 100644
--- a/backend/src/main/resources/db/migration/V2__seed_data.sql
+++ b/backend/src/main/resources/db/migration/V2__seed_data.sql
@@ -199,6 +199,7 @@ INSERT INTO service_species (serviceId, species) VALUES
(1, 'Dog'),
(1, 'Cat'),
(1, 'Rabbit'),
+(1, 'Bird'),
(2, 'Dog'),
(2, 'Cat'),
(2, 'Rabbit'),
diff --git a/web/app/about/page.js b/web/app/about/page.js
index b15ad5e6..7695e81d 100644
--- a/web/app/about/page.js
+++ b/web/app/about/page.js
@@ -1,3 +1,5 @@
+//About page
+//Three info cards covering what the store does, its focus, and how to visit
export default function AboutPage() {
return (
diff --git a/web/app/adopt/[id]/page.js b/web/app/adopt/[id]/page.js
index 9a1ae6d3..ad31e4c5 100644
--- a/web/app/adopt/[id]/page.js
+++ b/web/app/adopt/[id]/page.js
@@ -7,6 +7,8 @@ import PetProfile from "@/components/PetProfile";
const API_BASE = "";
+//Pet detail page
+//Fetches a single pet by ID and passes it to PetProfile
export default function PetDetailPage() {
const { id } = useParams();
const [pet, setPet] = useState(null);
diff --git a/web/app/adopt/page.js b/web/app/adopt/page.js
index 7cc23723..472c9d90 100644
--- a/web/app/adopt/page.js
+++ b/web/app/adopt/page.js
@@ -5,6 +5,8 @@ import PetCard from "@/components/PetCard";
import { fetchAllPages } from "@/lib/fetchAllPages";
import { useCart } from "@/context/CartContext";
+//Adopt page
+//Browse available pets with species/breed filters and search
const API_BASE = "";
const PAGE_SIZE = 10000;
@@ -12,6 +14,8 @@ const inputCls = "px-4 py-[0.6rem] border-2 border-[#ddd] rounded-md text-base o
const btnPrimaryCls = "px-[1.4rem] py-[0.6rem] bg-[#e68672] text-white border-none rounded-md text-base cursor-pointer transition-colors hover:bg-[#d4705e]";
const btnOutlineCls = "px-4 py-[0.6rem] bg-transparent text-[#666] border-2 border-[#ddd] rounded-md text-base cursor-pointer transition-all hover:border-[#aaa] hover:text-[#333]";
+//Pagination button
+//Highlighted when it represents the current page
function PaginationBtn({ children, active, ...props }) {
return (
) : (
-
- {filteredActive.map((a) => (
-
-
- {a.serviceName}
-
- {a.appointmentStatus}
-
-
-
- {a.storeName}
- {a.appointmentDate} at {formatTime(a.appointmentTime)}
-
- {a.petName && (
-
Pet: {a.petName}
- )}
-
-
+ <>
+
+ {apptSlice.map((a) => (
+
+
+ {a.serviceName}
+
+ {a.appointmentStatus}
+
+
+
+ {a.storeName}
+ {a.appointmentDate} at {formatTime(a.appointmentTime)}
+
+ {a.petName && (
+
Pet: {a.petName}
+ )}
+
+
+
+ ))}
+
+ {apptTotalPages > 1 && (
+
+
+ Page {apptPage + 1} of {apptTotalPages}
+
- ))}
-
+ )}
+ >
)}
{pastAppts.length > 0 && (
-