fix
This commit is contained in:
parent
bdc68bf733
commit
ffb4035a7f
|
|
@ -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
|
||||||
Loading…
Reference in New Issue