📚

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

$81
★ 3.8

377 reviews

📚

Sony textbook 2

$1024
★ 3.9

384 reviews

📚

LG textbook 3

$250
★ 4.5

410 reviews

📚

Dell textbook 4

$844
★ 4.1

49 reviews

📚

HP textbook 5

$380
★ 4.0

161 reviews

📚

Nike textbook 6

$1022
★ 3.6

47 reviews

📚

Adidas textbook 7

$652
★ 3.9

469 reviews

📚

Apple textbook 8

$709
★ 4.4

305 reviews

📚

Samsung textbook 9

$68
★ 4.2

81 reviews

📚

Sony textbook 10

$278
★ 4.0

435 reviews

📚

LG textbook 11

$449
★ 4.9

219 reviews

📚

Dell textbook 12

$721
★ 3.7

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