📖

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

$457
4.6

151 reviews

📖

Sony fictio 26

$279
4.2

56 reviews

📖

LG fictio 27

$221
3.7

326 reviews

📖

Dell fictio 28

$576
4.5

348 reviews

📖

HP fictio 29

$1010
4.2

329 reviews

📖

Nike fictio 30

$390
3.6

68 reviews

📖

Adidas fictio 31

$1038
4.0

156 reviews

📖

Apple fictio 32

$681
4.0

401 reviews

📖

Samsung fictio 33

$580
4.3

309 reviews

📖

Sony fictio 34

$682
4.4

455 reviews

📖

LG fictio 35

$764
4.0

505 reviews

📖

Dell fictio 36

$1034
4.4

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