📚

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

$672
3.9

18 reviews

📚

Nike textbook 14

$590
4.2

494 reviews

📚

Adidas textbook 15

$516
3.5

407 reviews

📚

Apple textbook 16

$519
4.5

223 reviews

📚

Samsung textbook 17

$282
3.8

202 reviews

📚

Sony textbook 18

$1038
4.6

29 reviews

📚

LG textbook 19

$935
3.9

232 reviews

📚

Dell textbook 20

$172
4.6

60 reviews

📚

HP textbook 21

$606
4.0

417 reviews

📚

Nike textbook 22

$925
4.7

92 reviews

📚

Adidas textbook 23

$1016
4.5

432 reviews

📚

Apple textbook 24

$999
4.4

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