📚

Textbooks - Page 2

Showing page 2 of 5

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

Nested Marketplace Route

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

HP textbook 13

$939
4.5

58 reviews

📚

Nike textbook 14

$915
4.2

237 reviews

📚

Adidas textbook 15

$489
3.6

154 reviews

📚

Apple textbook 16

$708
4.4

389 reviews

📚

Samsung textbook 17

$650
4.0

100 reviews

📚

Sony textbook 18

$696
4.6

468 reviews

📚

LG textbook 19

$1002
4.9

217 reviews

📚

Dell textbook 20

$709
4.2

47 reviews

📚

HP textbook 21

$387
4.1

378 reviews

📚

Nike textbook 22

$857
4.6

68 reviews

📚

Adidas textbook 23

$1014
4.4

345 reviews

📚

Apple textbook 24

$546
4.3

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