📚

Textbooks - Page 4

Showing page 4 of 5

Path: /marketplace/books/textbooks/4
3
Path Depth
234
Total Items
4
Current Page
12
Items Shown

Nested Marketplace Route

File: /marketplace/[...path].astro
Handles: /marketplace/category/subcategory/page
Current path: ["books", "textbooks", "4"]
Parsed as: Category: "books", Subcategory: "textbooks", Page: "4"
📚

HP textbook 37

$969
3.6

289 reviews

📚

Nike textbook 38

$697
4.2

418 reviews

📚

Adidas textbook 39

$904
4.1

149 reviews

📚

Apple textbook 40

$86
4.9

164 reviews

📚

Samsung textbook 41

$844
3.7

381 reviews

📚

Sony textbook 42

$492
4.4

321 reviews

📚

LG textbook 43

$462
3.9

381 reviews

📚

Dell textbook 44

$172
5.0

239 reviews

📚

HP textbook 45

$706
4.9

402 reviews

📚

Nike textbook 46

$786
4.3

446 reviews

📚

Adidas textbook 47

$283
3.7

179 reviews

📚

Apple textbook 48

$330
4.6

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