🪑
Furniture - Page 5
Showing page 5 of 5
Path: /marketplace/home/furniture/5
3
Path Depth
345
Total Items
5
Current Page
12
Items Shown
Nested Marketplace Route
File:
/marketplace/[...path].astro
Handles:
/marketplace/category/subcategory/page
Current path:
["home", "furniture", "5"]
Parsed as:
Category: "home", Subcategory: "furniture", Page: "5"
🪑
Samsung furnitur 49
$693
★ 3.5
182 reviews
🪑
Sony furnitur 50
$659
★ 4.0
158 reviews
🪑
LG furnitur 51
$856
★ 4.5
349 reviews
🪑
Dell furnitur 52
$103
★ 4.4
430 reviews
🪑
HP furnitur 53
$64
★ 4.5
234 reviews
🪑
Nike furnitur 54
$98
★ 4.1
372 reviews
🪑
Adidas furnitur 55
$476
★ 4.8
485 reviews
🪑
Apple furnitur 56
$669
★ 4.0
223 reviews
🪑
Samsung furnitur 57
$382
★ 4.5
228 reviews
🪑
Sony furnitur 58
$547
★ 4.6
192 reviews
🪑
LG furnitur 59
$647
★ 4.3
247 reviews
🪑
Dell furnitur 60
$724
★ 4.7
480 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>