📱
Smartphones - Page 4
Showing page 4 of 5
Path: /marketplace/electronics/phones/4
3
Path Depth
245
Total Items
4
Current Page
12
Items Shown
Nested Marketplace Route
File:
/marketplace/[...path].astro
Handles:
/marketplace/category/subcategory/page
Current path:
["electronics", "phones", "4"]
Parsed as:
Category: "electronics", Subcategory: "phones", Page: "4"
📱
HP phone 37
$387
★ 4.0
281 reviews
📱
Nike phone 38
$904
★ 4.9
449 reviews
📱
Adidas phone 39
$71
★ 3.6
489 reviews
📱
Apple phone 40
$304
★ 3.6
244 reviews
📱
Samsung phone 41
$234
★ 5.0
255 reviews
📱
Sony phone 42
$586
★ 3.6
410 reviews
📱
LG phone 43
$146
★ 4.0
311 reviews
📱
Dell phone 44
$776
★ 4.3
145 reviews
📱
HP phone 45
$392
★ 4.2
317 reviews
📱
Nike phone 46
$1034
★ 4.6
426 reviews
📱
Adidas phone 47
$551
★ 3.8
152 reviews
📱
Apple phone 48
$334
★ 4.3
105 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>