📚

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

$718
3.7

53 reviews

📚

Nike textbook 38

$533
4.8

376 reviews

📚

Adidas textbook 39

$370
4.2

244 reviews

📚

Apple textbook 40

$222
4.3

278 reviews

📚

Samsung textbook 41

$541
3.9

424 reviews

📚

Sony textbook 42

$840
4.0

22 reviews

📚

LG textbook 43

$506
3.5

235 reviews

📚

Dell textbook 44

$956
4.1

416 reviews

📚

HP textbook 45

$808
4.5

125 reviews

📚

Nike textbook 46

$170
3.8

335 reviews

📚

Adidas textbook 47

$533
3.9

495 reviews

📚

Apple textbook 48

$92
4.2

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