You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SGPT/src/shared/components/home/QnASection.tsx

29 lines
865 B

2 years ago
import { useSpring, animated } from '@react-spring/web'
import React, { useEffect, useRef, useState } from 'react'
import { VscDebugBreakpointLog } from 'react-icons/vsc'
type Props = {}
const QnASection = (props: Props) => {
return (
<div
className="container flex justify-between items-center mx-auto py-2 text-white"
id="qna"
>
<div>
<h1 className="text-4xl font-bold text-center hover:text-orange-400">
FAQS
</h1>
<h2>
See some of the most frequently asked questions about Fight
{/* Out here. Got a question thats not on the list? Let us know
below! */}
</h2>
</div>
<div>ABC</div>
</div>
)
}
export default QnASection