🪑
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
$182
★ 4.7
244 reviews
🪑
Sony furnitur 50
$563
★ 3.6
128 reviews
🪑
LG furnitur 51
$479
★ 4.7
181 reviews
🪑
Dell furnitur 52
$439
★ 4.6
345 reviews
🪑
HP furnitur 53
$928
★ 3.9
26 reviews
🪑
Nike furnitur 54
$234
★ 3.6
144 reviews
🪑
Adidas furnitur 55
$449
★ 4.8
508 reviews
🪑
Apple furnitur 56
$827
★ 4.4
303 reviews
🪑
Samsung furnitur 57
$118
★ 4.3
182 reviews
🪑
Sony furnitur 58
$287
★ 3.6
72 reviews
🪑
LG furnitur 59
$965
★ 4.9
262 reviews
🪑
Dell furnitur 60
$478
★ 5.0
356 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>