chore: initialize tuhui repository
This commit is contained in:
24
frontend/src/pages/Home.jsx
Normal file
24
frontend/src/pages/Home.jsx
Normal file
@@ -0,0 +1,24 @@
|
||||
import Header from '../components/Header';
|
||||
import Hero from '../components/Hero';
|
||||
import Categories from '../components/Categories';
|
||||
import Festival from '../components/Festival';
|
||||
import Works from '../components/Works';
|
||||
import Designers from '../components/Designers';
|
||||
import Footer from '../components/Footer';
|
||||
|
||||
function Home() {
|
||||
return (
|
||||
<div className="home-page" style={{ paddingTop: '70px' }}>
|
||||
<Header />
|
||||
<Hero />
|
||||
<Categories />
|
||||
<Festival />
|
||||
<Works title="热门推荐" type="hot" />
|
||||
<Works title="最新上传" type="new" />
|
||||
<Designers />
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Home;
|
||||
Reference in New Issue
Block a user