📚

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

$705
4.6

367 reviews

📚

Nike textbook 14

$214
4.7

297 reviews

📚

Adidas textbook 15

$336
3.8

127 reviews

📚

Apple textbook 16

$382
4.9

501 reviews

📚

Samsung textbook 17

$116
4.2

260 reviews

📚

Sony textbook 18

$256
4.5

272 reviews

📚

LG textbook 19

$883
4.8

405 reviews

📚

Dell textbook 20

$874
3.6

154 reviews

📚

HP textbook 21

$909
4.9

16 reviews

📚

Nike textbook 22

$376
4.9

175 reviews

📚

Adidas textbook 23

$820
3.6

20 reviews

📚

Apple textbook 24

$701
4.8

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