🪑

Furniture - Page 3

Showing page 3 of 5

Path: /marketplace/home/furniture/3
3
Path Depth
345
Total Items
3
Current Page
12
Items Shown

Nested Marketplace Route

File: /marketplace/[...path].astro
Handles: /marketplace/category/subcategory/page
Current path: ["home", "furniture", "3"]
Parsed as: Category: "home", Subcategory: "furniture", Page: "3"
🪑

Samsung furnitur 25

$752
4.9

481 reviews

🪑

Sony furnitur 26

$629
3.8

501 reviews

🪑

LG furnitur 27

$316
4.3

264 reviews

🪑

Dell furnitur 28

$242
3.9

278 reviews

🪑

HP furnitur 29

$359
4.3

57 reviews

🪑

Nike furnitur 30

$961
3.9

189 reviews

🪑

Adidas furnitur 31

$878
3.7

468 reviews

🪑

Apple furnitur 32

$848
4.3

410 reviews

🪑

Samsung furnitur 33

$665
4.1

14 reviews

🪑

Sony furnitur 34

$541
4.6

400 reviews

🪑

LG furnitur 35

$446
3.9

45 reviews

🪑

Dell furnitur 36

$282
4.1

352 reviews

Try These Marketplace Paths

/marketplace/electronics → Electronics category
/marketplace/electronics/phones → Phone subcategory
/marketplace/electronics/phones/2 → Page 2 of phones
/marketplace/clothing/shoes/1 → Page 1 of shoes

Nested Marketplace Implementation

---
// File: /marketplace/[...path].astro
export function getStaticPaths() {
  // Pre-generate all possible marketplace paths
  return [
    { params: { path: 'electronics' } },
    { params: { path: 'electronics/phones' } },
    { params: { path: 'electronics/phones/1' } },
    { params: { path: 'electronics/phones/2' } },
    // ... more paths
  ];
}

const { path } = Astro.params;
const [category, subcategory, page] = path.split('/');
---

<h1>{category} → {subcategory} → Page {page}</h1>