Files
davila7--claude-code-templates/dashboard/src/pages/trending.astro
T
wehub-resource-sync bb5c75ce05
Component Security Validation / Security Audit (push) Has been cancelled
Deploy to Cloudflare Pages / deploy (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:38:58 +08:00

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>