From ffb4035a7f81111518bf9818fc59c1ea8670cea8 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 11 Jul 2025 01:49:55 +0800 Subject: [PATCH] fix --- src/pages/HomePage.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/pages/HomePage.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx new file mode 100644 index 0000000..caa3741 --- /dev/null +++ b/src/pages/HomePage.tsx @@ -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 ( +
+ {/* Welcome Section */} + + + {/* Quick Actions */} + + + {/* Recent Projects */} + + + {/* Features Highlight */} + +
+ ) +} + +export default HomePage