Merge version_1_1782236991764 into main #1

Merged
bender merged 1 commits from version_1_1782236991764 into main 2026-06-23 17:50:49 +00:00

View File

@@ -5,61 +5,47 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ShopPage() {
return (
<>
<div id="product" data-section="product">
<SectionErrorBoundary name="product">
<div id="product" data-section="product">
<SectionErrorBoundary name="product">
<FeaturesRevealCardsBento
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",
},
]}
/>
</SectionErrorBoundary>
</div>
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"}
]}
/>
</SectionErrorBoundary>
</div>
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqTwoColumn
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.",
},
]}
/>
</SectionErrorBoundary>
</div>
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."},
]}
/>
</SectionErrorBoundary>
</div>
</>
);
}