📚

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

$727
★ 3.9

77 reviews

📚

Sony textbook 2

$894
★ 3.5

234 reviews

📚

LG textbook 3

$542
★ 3.8

380 reviews

📚

Dell textbook 4

$307
★ 3.7

491 reviews

📚

HP textbook 5

$418
★ 4.2

23 reviews

📚

Nike textbook 6

$572
★ 3.5

259 reviews

📚

Adidas textbook 7

$560
★ 3.8

193 reviews

📚

Apple textbook 8

$957
★ 3.5

75 reviews

📚

Samsung textbook 9

$138
★ 3.8

37 reviews

📚

Sony textbook 10

$997
★ 5.0

320 reviews

📚

LG textbook 11

$385
★ 4.6

293 reviews

📚

Dell textbook 12

$598
★ 4.6

389 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>