From 3ab77a595589ff7aff35965ed97adc27f93b986c Mon Sep 17 00:00:00 2001 From: JaberHPranto Date: Fri, 9 Jul 2021 13:56:12 +0600 Subject: [PATCH] update --- client/src/App.js | 8 ++-- .../components/LandingPage/AccordionSec.js | 48 +++++++++++++++++++ 2 files changed, 52 insertions(+), 4 deletions(-) create mode 100644 client/src/components/LandingPage/AccordionSec.js diff --git a/client/src/App.js b/client/src/App.js index 497bc92..a5ca684 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -1,13 +1,13 @@ import "bootstrap/dist/css/bootstrap.min.css"; -//import LandingPage from "./pages/LandingPage"; -import EcommercePage from "./pages/EcommercePage"; +import LandingPage from "./pages/LandingPage"; +// import EcommercePage from "./pages/EcommercePage"; import "./styles/bootstrap.min.css"; function App() { return (
- {/* */} - + + {/* */}
); } diff --git a/client/src/components/LandingPage/AccordionSec.js b/client/src/components/LandingPage/AccordionSec.js new file mode 100644 index 0000000..1670e7d --- /dev/null +++ b/client/src/components/LandingPage/AccordionSec.js @@ -0,0 +1,48 @@ +import React from 'react' + +function AccordionSec() { + return ( +
+
+
+

+ +

+
+
+ This is the first item's accordion body. It is shown by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow. +
+
+
+
+

+ +

+
+
+ This is the second item's accordion body. It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow. +
+
+
+
+

+ +

+
+
+ This is the third item's accordion body. It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the .accordion-body, though the transition does limit overflow. +
+
+
+
+
+ ) +} + +export default AccordionSec