diff --git a/src/pages/ShopPage.tsx b/src/pages/ShopPage.tsx
index 15881e8..e9a19b1 100644
--- a/src/pages/ShopPage.tsx
+++ b/src/pages/ShopPage.tsx
@@ -5,61 +5,47 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ShopPage() {
return (
<>
-
-
+
+
-
-
+ tag="Inventory"
+ title="Shop Our Premium Selection"
+ description="Quality gear for every outdoor discipline."
+ items={[
+ {
+ title: "Tactical Gear", description: "Precision tools.", href: "/shop", imageSrc: "http://img.b2bpic.net/free-photo/front-view-brown-bow-with-black-bow-dark-surface-darkness-pin-measure-photo-color_179666-24409.jpg"},
+ {
+ title: "Fishing Tackle", description: "Ready to catch.", href: "/shop", imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-various-fishing-lures-box_23-2147894157.jpg"},
+ {
+ title: "Camping Essentials", description: "Stay prepared.", href: "/shop", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-with-gas-tank-tea-pot_23-2148456519.jpg"},
+ {
+ title: "Technical Apparel", description: "Stay dry.", href: "/shop", imageSrc: "http://img.b2bpic.net/free-photo/portrait-redhead-snowboarder-with-full-beard-winter-hat-protective-glasses-dressed-snowboarding-coat-posing-studio-looking-away-isolated-gray-background_613910-6297.jpg"},
+ {
+ title: "Outdoor Lighting", description: "Brighten trails.", href: "/shop", imageSrc: "http://img.b2bpic.net/free-photo/sport-assortment-minimal-style_23-2149006325.jpg"},
+ {
+ title: "Precision Optics", description: "See farther.", href: "/shop", imageSrc: "http://img.b2bpic.net/free-photo/wooden-background-with-binoculars-others-travel-objects_23-2147604769.jpg"},
+ {
+ title: "Cooking Gear", description: "Cook anywhere.", href: "/shop", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-meal-ingredients-table_23-2149512458.jpg"}
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Help"
+ title="Shop FAQs"
+ description="Answers to your gear questions."
+ items={[
+ {
+ question: "What is your return policy?", answer: "We accept returns on unused gear within 30 days."},
+ {
+ question: "Do you offer shipping?", answer: "Yes, we ship nationwide via secure carriers."},
+ ]}
+ />
+
+
>
);
}