Skip to content

Commit

Permalink
Add how to support section
Browse files Browse the repository at this point in the history
  • Loading branch information
Roma36 committed Aug 30, 2023
1 parent a18b6a8 commit bfc1377
Show file tree
Hide file tree
Showing 6 changed files with 363 additions and 58 deletions.
46 changes: 46 additions & 0 deletions src/components/FAQ/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import React from "react";
import Accordion from "../Accordion";
import AccordionItem from "../Accordion/Item";

export default function FAQ() {
return (
<section className="text-[#0C192B] flex flex-col justify-center w-full bg-light2 py-20 px-6">
<div className="w-full max-w-4xl mx-auto">
<h3 className="text-center text-3xl md:text-5xl font-bold mb-6 md:mb-12">
Frequently Asked Questions
</h3>

<Accordion>
<AccordionItem summary="What is OpenTF?" open>
Under a well-known and widely-accepted license that companies can
trus, that won’t suddenly change in the future, and isn’t subhect to
the whims of a singe vendor. Under a well-known and widely-accepted
license that companies can trus, that won’t suddenly change in the
future, and isn’t subhect to the whims of a singe vendor.
</AccordionItem>
<AccordionItem summary="Why was OpenTF created?">
Under a well-known and widely-accepted license that companies can
trus, that won’t suddenly change in the future, and isn’t subhect to
the whims of a singe vendor. Under a well-known and widely-accepted
license that companies can trus, that won’t suddenly change in the
future, and isn’t subhect to the whims of a singe vendor.
</AccordionItem>
<AccordionItem summary="Can I use OpenTF as a drop-in replacement for Terraform?">
Under a well-known and widely-accepted license that companies can
trus, that won’t suddenly change in the future, and isn’t subhect to
the whims of a singe vendor. Under a well-known and widely-accepted
license that companies can trus, that won’t suddenly change in the
future, and isn’t subhect to the whims of a singe vendor.
</AccordionItem>
<AccordionItem summary="What are the differences between OpenTF and Terraform?">
Under a well-known and widely-accepted license that companies can
trus, that won’t suddenly change in the future, and isn’t subhect to
the whims of a singe vendor. Under a well-known and widely-accepted
license that companies can trus, that won’t suddenly change in the
future, and isn’t subhect to the whims of a singe vendor.
</AccordionItem>
</Accordion>
</div>
</section>
);
}
52 changes: 0 additions & 52 deletions src/components/HomePage/index.tsx

This file was deleted.

Loading

0 comments on commit bfc1377

Please sign in to comment.