From 2489c889f2ca90a37a4dd86930b9b51b7100a533 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulises=20Vi=C3=B1a?= Date: Wed, 6 Sep 2023 18:00:26 -0600 Subject: [PATCH 01/17] 03/faq (#13) * feat: FAQ section Created the FAQ section and modified the file structure to have a FAQ data file * fix: Removed the FAQ section from App.jsx Removed the call to the section on App.jsx, this was used for development * style: FAQ section Made the answers aligned to the left as per requested in the pull request feedback and made opening a question in one column don't affect the position on the other * style: adjust spacing of faq --------- Co-authored-by: Jeffrey Zang Co-authored-by: Jeffrey Zang <66485719+jeffrey-zang@users.noreply.github.com> --- src/App.jsx | 2 ++ src/data/FAQ.data.js | 30 ++++++++++++++++++++++++ src/sections/FAQ.jsx | 56 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 88 insertions(+) create mode 100644 src/data/FAQ.data.js create mode 100644 src/sections/FAQ.jsx diff --git a/src/App.jsx b/src/App.jsx index 41a7992..1887175 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,4 +1,5 @@ import Navbar from './components/Navbar' +import FAQ from './sections/FAQ' import Team from './sections/Team' import Contact from './sections/Contact' import Footer from './components/Footer' @@ -8,6 +9,7 @@ function App() { return (
+