()
| 7 | import FooterCTA from "./footer-cta"; |
| 8 | |
| 9 | export async function Landing() { |
| 10 | const tracks = await getAllTracks(); |
| 11 | const categories = await getAllCategories(); // Fetch categories |
| 12 | |
| 13 | return ( |
| 14 | <div className="flex flex-col"> |
| 15 | <AppbarClient /> |
| 16 | <Hero tracks={tracks} /> |
| 17 | <Tracks tracks={tracks} categories={categories} /> |
| 18 | <FooterCTA /> |
| 19 | <Footer /> |
| 20 | </div> |
| 21 | ); |
| 22 | } |
nothing calls this directly
no test coverage detected