📖

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

$771
3.9

85 reviews

📖

Sony fictio 50

$816
4.9

46 reviews

📖

LG fictio 51

$471
4.3

401 reviews

📖

Dell fictio 52

$856
4.1

307 reviews

📖

HP fictio 53

$635
3.6

188 reviews

📖

Nike fictio 54

$971
3.9

407 reviews

📖

Adidas fictio 55

$438
4.6

221 reviews

📖

Apple fictio 56

$1039
4.0

328 reviews

📖

Samsung fictio 57

$301
4.3

408 reviews

📖

Sony fictio 58

$612
4.5

75 reviews

📖

LG fictio 59

$544
4.0

492 reviews

📖

Dell fictio 60

$913
3.6

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