@@ -174,14 +193,14 @@ export default function LandingPage() {
@@ -192,14 +211,14 @@ export default function LandingPage() {
columns={[
{
items: [
- { label: "Inventory", href: "#inventory" },
+ { label: "Shop Inventory", href: "#inventory" },
{ label: "FFL Transfers", href: "#ffl" },
- { label: "Contact Us", href: "#contact" }
+ { label: "Customer Reviews", href: "#testimonials" }
]
},
{
items: [
- { label: "Legal Compliance", href: "#legal" },
+ { label: "Legal & Compliance", href: "#legal" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]
@@ -207,7 +226,7 @@ export default function LandingPage() {
{
items: [
{ label: "Woodville, Texas", href: "#" },
- { label: "Licensed FFL Dealer", href: "#" },
+ { label: "Licensed FFL #TX-12345", href: "#" },
{ label: "Federal Firearms Licensed", href: "#" }
]
}
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
new file mode 100644
index 0000000..6d5e0a2
--- /dev/null
+++ b/src/app/shop/page.tsx
@@ -0,0 +1,154 @@
+"use client";
+
+import { useState } from "react";
+import { Search, Filter, ShoppingCart } from "lucide-react";
+
+const products = [
+ {
+ id: "hg-001", category: "Handguns", brand: "Smith & Wesson", name: "9mm M&P Shield", price: 499.99,
+ rating: 5,
+ reviews: 847,
+ image: "http://img.b2bpic.net/free-photo/empty-bullets-gun-table_53876-148180.jpg", inStock: true,
+ description: "Compact, lightweight 9mm handgun perfect for concealed carry"
+ },
+ {
+ id: "rf-002", category: "Rifles", brand: "Colt", name: ".223 AR-15 Rifle", price: 899.99,
+ rating: 5,
+ reviews: 1200,
+ image: "http://img.b2bpic.net/free-photo/man-shooting-gallery-trying-out-new-rifle-model-close-up_482257-127883.jpg", inStock: true,
+ description: "Versatile AR-15 platform in 5.56 NATO/.223 Remington"
+ },
+ {
+ id: "sg-003", category: "Shotguns", brand: "Mossberg", name: "12 Gauge Pump Action", price: 349.99,
+ rating: 5,
+ reviews: 634,
+ image: "http://img.b2bpic.net/free-photo/shotgun-bullets_53876-15100.jpg", inStock: true,
+ description: "Reliable 12 gauge pump action for hunting and sport shooting"
+ },
+ {
+ id: "acc-004", category: "Accessories", brand: "Holosun", name: "Red Dot Optic", price: 199.99,
+ rating: 5,
+ reviews: 2100,
+ image: "http://img.b2bpic.net/free-photo/micro-pipette-dropping-blood-sample-microscope-tray-genetic-analysis-science-laboratory-specialist-using-dropper-microscopic-tool-with-lens-magnifying-glass-close-up_482257-30159.jpg", inStock: true,
+ description: "Quality red dot sight for accurate target acquisition"
+ }
+];
+
+const categories = ["All", "Handguns", "Rifles", "Shotguns", "Accessories"];
+
+export default function ShopPage() {
+ const [selectedCategory, setSelectedCategory] = useState("All");
+ const [searchQuery, setSearchQuery] = useState("");
+ const [cartItems, setCartItems] = useState<{ id: string; quantity: number }[]>([]);
+
+ const filteredProducts = products.filter(product => {
+ const categoryMatch = selectedCategory === "All" || product.category === selectedCategory;
+ const searchMatch = product.name.toLowerCase().includes(searchQuery.toLowerCase()) ||
+ product.brand.toLowerCase().includes(searchQuery.toLowerCase());
+ return categoryMatch && searchMatch;
+ });
+
+ const addToCart = (productId: string) => {
+ setCartItems(prev => {
+ const existing = prev.find(item => item.id === productId);
+ if (existing) {
+ return prev.map(item =>
+ item.id === productId ? { ...item, quantity: item.quantity + 1 } : item
+ );
+ } else {
+ return [...prev, { id: productId, quantity: 1 }];
+ }
+ });
+ };
+
+ return (
+
+ {/* Header */}
+
+
+
Shop Firearms & Accessories
+
Browse our complete inventory of quality firearms and gear
+
+
+
+
+ {/* Search and Filter */}
+
+
+
+
+ setSearchQuery(e.target.value)}
+ className="w-full pl-10 pr-4 py-2 border border-slate-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500"
+ />
+
+
+
+
+ {/* Category Filter */}
+
+ {categories.map(category => (
+
+ ))}
+
+
+
+ {/* Products Grid */}
+
+ {filteredProducts.map(product => (
+
+

+
+
{product.brand}
+
{product.name}
+
{product.description}
+
+ ${product.price}
+ ⭐ {product.reviews} reviews
+
+
+
+
+ ))}
+
+
+ {/* Compliance Notice */}
+
+
Important: All Firearm Purchases Require
+
+ - • Valid government-issued ID verification
+ - • Federal background check (NICS)
+ - • Compliance with all federal, state, and local regulations
+ - • Applicable waiting periods may apply
+
+
+
+
+ );
+}