mxivideo/src/pages/HomePage.tsx

26 lines
610 B
TypeScript

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