training_data/apps/web/src/app/main/home/page.tsx

21 lines
442 B
TypeScript
Raw Normal View History

2025-02-25 12:31:37 +08:00
import HeroSection from "./components/HeroSection";
import CategorySection from "./components/CategorySection";
import CoursesSection from "./components/CoursesSection";
2025-02-25 16:23:36 +08:00
2025-02-06 16:32:31 +08:00
const HomePage = () => {
2025-02-25 12:31:37 +08:00
return (
<div className="min-h-screen">
<HeroSection />
<CoursesSection
title="推荐课程"
description="最受欢迎的精品课程,助你快速成长"
/>
<CategorySection />
</div>
);
2025-01-03 09:24:46 +08:00
};
2025-02-25 12:31:37 +08:00
export default HomePage;