📚
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
$812
★ 3.7
415 reviews
📚
Nike textbook 38
$175
★ 4.3
393 reviews
📚
Adidas textbook 39
$369
★ 3.6
114 reviews
📚
Apple textbook 40
$77
★ 3.6
482 reviews
📚
Samsung textbook 41
$76
★ 3.9
191 reviews
📚
Sony textbook 42
$599
★ 4.8
355 reviews
📚
LG textbook 43
$876
★ 3.8
446 reviews
📚
Dell textbook 44
$324
★ 4.1
480 reviews
📚
HP textbook 45
$788
★ 4.8
178 reviews
📚
Nike textbook 46
$995
★ 3.9
329 reviews
📚
Adidas textbook 47
$613
★ 3.5
212 reviews
📚
Apple textbook 48
$558
★ 4.6
351 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>