Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ const page = () => {
<Navbar />
<Hero />
<Grid />
<Flexbox />
<Flexbox />
{/* <Bottom /> */}
<Faq />
<Faq />
<div ref={newsletterRef}>
<Newsletter />
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/Faq.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const Faq = () => {
<span className="text-violet-300 text-5xl font-bold font-['Inter'] leading-[60px]">Questions</span>
</div>
</motion.div>
<motion.div ref={s1} initial={{ opacity: 0, x: 50 }} animate={faqVisible1 ? { opacity: 1, x: 0 } : { opacity: 0 }} transition={{ duration: 0.8 }} className="flex grow basis-[0%] flex-col items-stretch mt-2.5 text-6xl">
<motion.div ref={s1} initial={{ opacity: 0, x: 50 }} animate={faqVisible1 ? { opacity: 1, x: 0 } : { opacity: 0, x:0 }} transition={{ duration: 0.8 }} className="flex grow basis-[0%] flex-col items-stretch mt-2.5 text-6xl">
{faqData.map((item, index) => (
<div key={index} className="mb-3"> {/* Added margin bottom to create separation */}
<div className="flex items-center justify-between gap-5 px-5 max-md:max-w-full max-md:flex-wrap cursor-pointer">
Expand Down