diff --git a/frontend/src/pages/Search.tsx b/frontend/src/pages/Search.tsx
index b8ff0cf..7c8273f 100644
--- a/frontend/src/pages/Search.tsx
+++ b/frontend/src/pages/Search.tsx
@@ -1,10 +1,195 @@
-function Search() {
- return (
-
-
Ready for pet adoption, or just looking around?
-
This is the search page. You can add filtering or querying features here later.
+import { CSSProperties, useState } from "react";
+import instagramLogo from "../assets/instagram_logo.png";
+import facebookLogo from "../assets/facebook_logo.png";
+import twitterLogo from "../assets/twitter_logo.png";
+import youtubeLogo from "../assets/youtube_logo.png";
+import menuLogo from "../assets/menu_logo.png";
+
+export default function Search() {
+ const [location, setLocation] = useState("");
+ const [radius, setRadius] = useState(500);
+
+ return (
+
+
+
+ Ready for pet adoption, or just looking around?
+
+ Get started by searching by criteria.
+
+
+
+
+
Pet Age
+
+
+
+
Breed
+
+
+
+
Size
+
+
+
+
Temperament
+
+
+
+
+
+
+
Location
+ setLocation(e.target.value)}
+ style={inputStyle}
+ placeholder="Enter location"
+ />
+
+
+
Search Radius
+
setRadius(Number(e.target.value))}
+ style={{ width: "100%" }}
+ />
+
{radius} mi
+
+
+
+
+
+
- );
- }
-
- export default Search;
\ No newline at end of file
+
+
+
+ );
+}
+
+// === Styles ===
+
+const pageWrapperStyle: CSSProperties = {
+ backgroundColor: "rgb(180, 164, 143)",
+ minHeight: "100vh",
+ display: "flex",
+ flexDirection: "column"
+};
+
+const contentWrapperStyle: CSSProperties = {
+ flex: 1,
+ padding: "2rem",
+ boxSizing: "border-box",
+ display: "flex",
+ flexDirection: "column",
+ justifyContent: "center"
+};
+
+const headerText: CSSProperties = {
+ color: "white",
+ textAlign: "center",
+ marginBottom: "1.5rem",
+ fontSize: "1.5rem"
+};
+
+const filtersGrid: CSSProperties = {
+ display: "grid",
+ gridTemplateColumns: "repeat(auto-fit, minmax(150px, 1fr))",
+ gap: "1rem",
+ marginBottom: "1rem"
+};
+
+const filterBlock: CSSProperties = {
+ textAlign: "center"
+};
+
+const filterTitle: CSSProperties = {
+ color: "white",
+ fontSize: "1.1rem",
+ marginBottom: "0.5rem"
+};
+
+const dropdownStyle: CSSProperties = {
+ width: "100%",
+ padding: "0.5rem",
+ borderRadius: "6px",
+ fontSize: "1rem",
+ border: "1px solid #999"
+};
+
+const inputStyle: CSSProperties = {
+ width: "100%",
+ padding: "0.5rem",
+ borderRadius: "30px",
+ border: "none",
+ fontSize: "1rem"
+};
+
+const searchOptionsRow: CSSProperties = {
+ display: "flex",
+ gap: "1.5rem",
+ flexWrap: "wrap",
+ marginBottom: "1rem"
+};
+
+const searchButton: CSSProperties = {
+ padding: "0.75rem 2rem",
+ fontSize: "1.1rem",
+ borderRadius: "1rem",
+ backgroundColor: "black",
+ color: "white",
+ border: "none",
+ cursor: "pointer"
+};
+
+const footerStyle: CSSProperties = {
+ backgroundColor: "black",
+ color: "white",
+ padding: "1rem",
+ display: "flex",
+ justifyContent: "space-between",
+ alignItems: "center"
+};
+
+const footerLeftStyle: CSSProperties = {
+ display: "flex",
+ gap: "1.5rem"
+};
+
+const iconStyle: CSSProperties = {
+ width: "36px",
+ height: "36px"
+};