mirror of
https://github.com/WDI-Ideas/rubix.git
synced 2026-04-29 01:05:50 +00:00
Rubix Home page development
This commit is contained in:
21
src/pages/HomePage.jsx
Normal file
21
src/pages/HomePage.jsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import Client from "../components/HomePage/Client";
|
||||
import HomeBanner from "../components/HomePage/HomeBanner";
|
||||
import Resources from "../components/HomePage/Resources";
|
||||
import Stats from "../components/HomePage/Stats";
|
||||
import Subnets from "../components/HomePage/Subnets";
|
||||
import WhitePaper from "../components/HomePage/WhitePaper";
|
||||
|
||||
const HomePage = () => {
|
||||
return (
|
||||
<>
|
||||
<HomeBanner />
|
||||
<Subnets />
|
||||
<Stats />
|
||||
<WhitePaper />
|
||||
<Client />
|
||||
<Resources />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default HomePage;
|
||||
7
src/pages/LearnPage.jsx
Normal file
7
src/pages/LearnPage.jsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import LearnBanner from "../components/LearnPage/LearnBanner";
|
||||
|
||||
const LearnPage = () => {
|
||||
return <LearnBanner />;
|
||||
};
|
||||
|
||||
export default LearnPage;
|
||||
Reference in New Issue
Block a user