Initial commit
This commit is contained in:
31
src/templates/HomePage/index.tsx
Normal file
31
src/templates/HomePage/index.tsx
Normal file
@@ -0,0 +1,31 @@
|
||||
import Layout from "../../components/Layout/index.js";
|
||||
import Hero from "./Hero/index.js";
|
||||
import Benefits from "./Benefits/index.js";
|
||||
import Features from "./Features/index.js";
|
||||
// import Collaboration from "./Collaboration";
|
||||
// import HowItWorks from "./HowItWorks";
|
||||
// import Pricing from "./Pricing";
|
||||
// import Testimonials from "./Testimonials";
|
||||
// import Roadmap from "./Roadmap";
|
||||
// import Services from "../../components/Services";
|
||||
// import Join from "../../components/Join";
|
||||
|
||||
const HomePage = () => {
|
||||
return (
|
||||
<Layout>
|
||||
<Hero />
|
||||
<Benefits />
|
||||
<Features />
|
||||
{/* 其他组件将在后续逐步修复 */}
|
||||
{/* <Collaboration />
|
||||
<HowItWorks />
|
||||
<Services />
|
||||
<Pricing />
|
||||
<Testimonials />
|
||||
<Roadmap />
|
||||
<Join /> */}
|
||||
</Layout>
|
||||
);
|
||||
};
|
||||
|
||||
export default HomePage;
|
||||
Reference in New Issue
Block a user