From 661f99350cfd947f0dd0e0bf9e305267dbbf40b6 Mon Sep 17 00:00:00 2001 From: Developer Date: Mon, 26 Sep 2022 16:29:56 +0300 Subject: [PATCH] [#3929] Add Home page --- landing/src/page/home/index.js | 23 +++++++++++++++++++++++ landing/src/page/home/style.scss | 11 +++++++++++ 2 files changed, 34 insertions(+) create mode 100644 landing/src/page/home/index.js create mode 100644 landing/src/page/home/style.scss diff --git a/landing/src/page/home/index.js b/landing/src/page/home/index.js new file mode 100644 index 0000000000..5d7068e2a1 --- /dev/null +++ b/landing/src/page/home/index.js @@ -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 ( +
+ + + + + + +
+ ); +}; + +export default Home; diff --git a/landing/src/page/home/style.scss b/landing/src/page/home/style.scss new file mode 100644 index 0000000000..041ee7f43b --- /dev/null +++ b/landing/src/page/home/style.scss @@ -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; + } + } +}