This commit is contained in:
root 2025-07-11 01:49:55 +08:00
parent bdc68bf733
commit ffb4035a7f
1 changed files with 25 additions and 0 deletions

25
src/pages/HomePage.tsx Normal file
View File

@ -0,0 +1,25 @@
import React from 'react'
import WelcomeSection from '../components/WelcomeSection'
import QuickActions from '../components/QuickActions'
import RecentProjects from '../components/RecentProjects'
import FeaturesHighlight from '../components/FeaturesHighlight'
const HomePage: React.FC = () => {
return (
<div className="p-6 space-y-8">
{/* Welcome Section */}
<WelcomeSection />
{/* Quick Actions */}
<QuickActions />
{/* Recent Projects */}
<RecentProjects />
{/* Features Highlight */}
<FeaturesHighlight />
</div>
)
}
export default HomePage