📚
Textbooks - Page 1
Showing page 1 of 5
Path: /marketplace/books/textbooks/1
3
Path Depth
234
Total Items
1
Current Page
12
Items Shown
Nested Marketplace Route
File:
/marketplace/[...path].astro
Handles:
/marketplace/category/subcategory/page
Current path:
["books", "textbooks", "1"]
Parsed as:
Category: "books", Subcategory: "textbooks", Page: "1"
📚
Samsung textbook 1
$957
★ 4.4
245 reviews
📚
Sony textbook 2
$324
★ 3.5
91 reviews
📚
LG textbook 3
$507
★ 4.0
241 reviews
📚
Dell textbook 4
$961
★ 4.3
474 reviews
📚
HP textbook 5
$561
★ 4.6
47 reviews
📚
Nike textbook 6
$738
★ 3.7
459 reviews
📚
Adidas textbook 7
$189
★ 4.3
316 reviews
📚
Apple textbook 8
$407
★ 4.0
379 reviews
📚
Samsung textbook 9
$52
★ 4.9
343 reviews
📚
Sony textbook 10
$52
★ 4.4
337 reviews
📚
LG textbook 11
$739
★ 3.9
208 reviews
📚
Dell textbook 12
$1002
★ 4.6
336 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>