📚

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

$166
4.7

75 reviews

📚

Nike textbook 14

$702
4.6

137 reviews

📚

Adidas textbook 15

$205
5.0

103 reviews

📚

Apple textbook 16

$276
4.9

263 reviews

📚

Samsung textbook 17

$770
4.1

157 reviews

📚

Sony textbook 18

$266
4.1

440 reviews

📚

LG textbook 19

$329
4.2

204 reviews

📚

Dell textbook 20

$487
4.0

77 reviews

📚

HP textbook 21

$328
3.8

208 reviews

📚

Nike textbook 22

$726
4.8

179 reviews

📚

Adidas textbook 23

$602
4.8

383 reviews

📚

Apple textbook 24

$818
4.0

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