19 lines
707 B
Plaintext
19 lines
707 B
Plaintext
---
|
|
import DashboardLayout from '../layouts/DashboardLayout.astro';
|
|
import TopBar from '../components/TopBar.astro';
|
|
import TrendingView from '../components/TrendingView.tsx';
|
|
import SearchModal from '../components/SearchModal.tsx';
|
|
import CartSidebar from '../components/CartSidebar.tsx';
|
|
export const prerender = true;
|
|
---
|
|
|
|
<DashboardLayout
|
|
title="Most Popular Claude Code Components This Week | Claude Code Templates"
|
|
description="Discover the most downloaded Claude Code components. See trending agents, commands, MCPs, and skills that developers are installing right now."
|
|
>
|
|
<TopBar />
|
|
<TrendingView client:load />
|
|
<SearchModal client:idle />
|
|
<CartSidebar client:idle />
|
|
</DashboardLayout>
|