diff --git a/src/app/page.tsx b/src/app/page.tsx index 64ab70b..bd9351a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,13 @@ "use client"; +import FAQSection from "@/components/FaqSection"; import HeroSection from "@/components/HeroSection"; export default function Home() { - return ; + return ( + <> + + + + ); } diff --git a/src/components/FaqSection.tsx b/src/components/FaqSection.tsx index c27a29e..f7044e9 100644 --- a/src/components/FaqSection.tsx +++ b/src/components/FaqSection.tsx @@ -1,3 +1,5 @@ +"use client"; + import { Accordion, AccordionContent, @@ -5,100 +7,97 @@ import { AccordionTrigger, } from "@/components/ui/accordion"; -export default function FAQSection() { +export default function FAQ() { return ( -
-
-
-

+
+
+
+

Frequently Asked Questions -

-

- We've compiled a list of the most frequently asked questions about - SafeTrust to help you understand our P2P transaction platform +

+

+ We've compiled a list of the most frequently asked questions + about SafeTrust to help you understand our P2P transaction platform better.

-
- - - - What is SafeTrust? - - - SafeTrust is a decentralized P2P transaction platform that - provides secure escrow services and safe deposit solutions using - blockchain technology. Our platform ensures trust and security - in every transaction between parties. - - + + + + What is SafeTrust? + + + SafeTrust is a decentralized P2P transaction platform that + provides secure escrow services and safe deposit solutions using + blockchain technology. Our platform ensures trust and security in + every transaction between parties. + + - - - How do I get started with SafeTrust? - - - Getting started with SafeTrust is easy! Simply connect your - wallet, verify your account, and start using our secure P2P - transaction features. Our intuitive interface and comprehensive - onboarding process will guide you through each step. - - + + + How do I get started with SafeTrust? + + + Getting started with SafeTrust is easy! Simply connect your + wallet, verify your account, and start using our secure P2P + transaction features. Our intuitive interface and comprehensive + onboarding process will guide you through each step. + + - - - What security measures does SafeTrust use? - - - SafeTrust employs multiple layers of security, including smart - contracts, multi-signature wallets, and advanced encryption. Our - blue-chip security standards ensure your assets are protected - throughout every transaction. - - + + + What security measures does SafeTrust use? + + + SafeTrust employs multiple layers of security, including smart + contracts, multi-signature wallets, and advanced encryption. Our + blue-chip security standards ensure your assets are protected + throughout every transaction. + + - - - What are the transaction fees? - - - Our fees are transparent and competitive, starting from 0.5% per - transaction for basic users. We offer tiered pricing based on - transaction volume, with reduced rates for pro users and custom - solutions for enterprise clients. - - + + + What are the transaction fees? + + + Our fees are transparent and competitive, starting from 0.5% per + transaction for basic users. We offer tiered pricing based on + transaction volume, with reduced rates for pro users and custom + solutions for enterprise clients. + + - - - Which blockchains does SafeTrust support? - - - SafeTrust supports multiple blockchain networks including - Ethereum, Stellar, and other major chains. This ensures maximum - flexibility and accessibility for all your P2P transaction - needs. - - - -
+ + + Which blockchains does SafeTrust support? + + + SafeTrust supports multiple blockchain networks including + Ethereum, Stellar, and other major chains. This ensures maximum + flexibility and accessibility for all your P2P transaction needs. + + +
-
+ ); }