Rubix Home page development

This commit is contained in:
rockyeverlast
2024-03-22 15:02:23 +05:30
commit f9fd079bc0
53 changed files with 6863 additions and 0 deletions

21
src/pages/HomePage.jsx Normal file
View 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
View File

@@ -0,0 +1,7 @@
import LearnBanner from "../components/LearnPage/LearnBanner";
const LearnPage = () => {
return <LearnBanner />;
};
export default LearnPage;