This commit is contained in:
ct
2025-07-15 07:46:12 +08:00
parent 1c97076df6
commit 8c44538dac
3 changed files with 64 additions and 38 deletions

View File

@@ -5,7 +5,7 @@ import Footer from './partials/Footer.jsx';
import Hero from './partials/Hero.jsx';
import { useEffect, useState } from 'react';
const Home = () => {
const Home = ({ faqData }) => {
const [isClient, setIsClient] = useState(false);
const [Editor, setEditor] = useState(null);
@@ -33,7 +33,7 @@ const Home = () => {
<div className="space-y-16">
<Hero />
<Features />
<FAQDiscord />
<FAQDiscord faqData={faqData} />
</div>
<Footer />
<AuthUser />