feat: refresh storefront ui

This commit is contained in:
2026-03-08 20:18:27 +08:00
parent 2e796bb55f
commit b0c9c193aa
10 changed files with 2119 additions and 1719 deletions

View File

@@ -6,19 +6,19 @@ 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>
);
}
function Home() {
return (
<div className="home-page" style={{ paddingTop: '70px' }}>
<Header />
<Hero />
<Categories />
<Festival />
<Works title="热门推荐" type="hot" sectionId="home-hot-works" />
<Works title="最新上传" type="new" sectionId="home-new-works" />
<Designers />
<Footer />
</div>
);
}
export default Home;