📚
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
$931
★ 4.1
431 reviews
📚
Nike textbook 14
$745
★ 4.0
146 reviews
📚
Adidas textbook 15
$554
★ 4.4
440 reviews
📚
Apple textbook 16
$464
★ 5.0
483 reviews
📚
Samsung textbook 17
$670
★ 4.0
286 reviews
📚
Sony textbook 18
$174
★ 3.6
505 reviews
📚
LG textbook 19
$601
★ 3.7
389 reviews
📚
Dell textbook 20
$488
★ 4.1
292 reviews
📚
HP textbook 21
$641
★ 3.8
439 reviews
📚
Nike textbook 22
$900
★ 4.4
100 reviews
📚
Adidas textbook 23
$602
★ 3.8
273 reviews
📚
Apple textbook 24
$194
★ 3.6
218 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>