Skip to content

Commit

Permalink
[#3929] Add Home page
Browse files Browse the repository at this point in the history
  • Loading branch information
voromahery committed Sep 26, 2022
1 parent 1e64a02 commit 661f993
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
23 changes: 23 additions & 0 deletions landing/src/page/home/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import React from "react";
import "./style.scss";
import Overview from "../../components/overview/index";
import KeyFeatures from "../../components/key-features/index";
import PricingTable from "../../components/pricing/pricing-table";
import Subscribe from '../../components/subscribe/index';
import PricingTab from '../../components/pricing/pricing-tab/index';
import Testimonial from "../../components/testimonial";

const Home = () => {
return (
<div className="home">
<Overview />
<KeyFeatures />
<PricingTab />
<PricingTable />
<Testimonial/>
<Subscribe />
</div>
);
};

export default Home;
11 changes: 11 additions & 0 deletions landing/src/page/home/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.home {
.pricing {
margin: 30px auto 64px auto;
@media (min-width: 601px) {
margin: 50px auto;
}
@media (min-width: 1024px) {
margin: 90px auto 127px auto;
}
}
}

0 comments on commit 661f993

Please sign in to comment.