📖

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

$165
4.7

33 reviews

📖

Sony fictio 50

$417
4.7

444 reviews

📖

LG fictio 51

$817
4.2

447 reviews

📖

Dell fictio 52

$837
4.7

327 reviews

📖

HP fictio 53

$123
3.7

309 reviews

📖

Nike fictio 54

$447
4.5

68 reviews

📖

Adidas fictio 55

$956
4.0

55 reviews

📖

Apple fictio 56

$888
4.4

437 reviews

📖

Samsung fictio 57

$141
4.5

505 reviews

📖

Sony fictio 58

$687
3.5

320 reviews

📖

LG fictio 59

$393
3.6

443 reviews

📖

Dell fictio 60

$756
3.9

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