📖

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

$571
4.9

68 reviews

📖

Sony fictio 26

$257
4.3

55 reviews

📖

LG fictio 27

$238
4.6

502 reviews

📖

Dell fictio 28

$797
4.2

423 reviews

📖

HP fictio 29

$551
4.6

110 reviews

📖

Nike fictio 30

$827
3.9

47 reviews

📖

Adidas fictio 31

$542
4.0

359 reviews

📖

Apple fictio 32

$73
4.5

190 reviews

📖

Samsung fictio 33

$1022
5.0

20 reviews

📖

Sony fictio 34

$315
3.6

297 reviews

📖

LG fictio 35

$248
5.0

315 reviews

📖

Dell fictio 36

$950
3.9

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