This commit is contained in:
ct
2025-07-17 03:28:02 +08:00
parent b195a9e7c3
commit 62cefe271e
9 changed files with 267 additions and 90 deletions

View File

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