📖

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

$664
4.3

129 reviews

📖

Sony fictio 26

$157
3.9

175 reviews

📖

LG fictio 27

$346
4.0

257 reviews

📖

Dell fictio 28

$230
4.8

307 reviews

📖

HP fictio 29

$182
4.2

296 reviews

📖

Nike fictio 30

$266
4.2

270 reviews

📖

Adidas fictio 31

$340
3.7

142 reviews

📖

Apple fictio 32

$990
4.5

229 reviews

📖

Samsung fictio 33

$155
3.7

322 reviews

📖

Sony fictio 34

$663
4.5

416 reviews

📖

LG fictio 35

$764
4.7

351 reviews

📖

Dell fictio 36

$519
4.9

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