📖

Fiction - Page 5

Showing page 5 of 5

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

Nested Marketplace Route

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

Samsung fictio 49

$392
4.5

56 reviews

📖

Sony fictio 50

$60
3.7

281 reviews

📖

LG fictio 51

$604
4.9

505 reviews

📖

Dell fictio 52

$1045
5.0

365 reviews

📖

HP fictio 53

$428
3.8

184 reviews

📖

Nike fictio 54

$680
3.9

490 reviews

📖

Adidas fictio 55

$515
4.6

462 reviews

📖

Apple fictio 56

$595
4.3

121 reviews

📖

Samsung fictio 57

$829
4.8

295 reviews

📖

Sony fictio 58

$71
4.9

346 reviews

📖

LG fictio 59

$1039
4.7

488 reviews

📖

Dell fictio 60

$56
4.8

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