📖

Fiction - Page 3

Showing page 3 of 5

Path: /marketplace/books/fiction/3
3
Path Depth
567
Total Items
3
Current Page
12
Items Shown

Nested Marketplace Route

File: /marketplace/[...path].astro
Handles: /marketplace/category/subcategory/page
Current path: ["books", "fiction", "3"]
Parsed as: Category: "books", Subcategory: "fiction", Page: "3"
📖

Samsung fictio 25

$583
4.7

65 reviews

📖

Sony fictio 26

$674
5.0

370 reviews

📖

LG fictio 27

$723
4.3

154 reviews

📖

Dell fictio 28

$808
4.1

170 reviews

📖

HP fictio 29

$317
3.9

249 reviews

📖

Nike fictio 30

$981
3.6

178 reviews

📖

Adidas fictio 31

$696
4.2

425 reviews

📖

Apple fictio 32

$664
5.0

277 reviews

📖

Samsung fictio 33

$782
4.7

234 reviews

📖

Sony fictio 34

$777
4.7

386 reviews

📖

LG fictio 35

$454
4.4

107 reviews

📖

Dell fictio 36

$696
4.1

208 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>