import { Container } from "@/components/Container";
import { Hero } from "@/components/Hero";
import { SectionTitle } from "@/components/SectionTitle";
import { Benefits } from "@/components/Benefits";
import { Video } from "@/components/Video";
import { Testimonials } from "@/components/Testimonials";
import { Faq } from "@/components/Faq";
import { Cta } from "@/components/Cta";

import { benefitOne, benefitTwo } from "@/components/data";
export default function Home() {
	return (
		<>
			<Hero />
			<div className="bg-white">
				<SectionTitle title="What we do">
					We assist with the process of resolving ownership, locating heirs,
					negotiation & transfer assistance of physical & financial
					distributions to heirs, as well as the providing document signing and
					notary services on any documents required to be signed by an heir to
					receive physical and financial distributions.{" "}
					<u>All At No Cost To The Estate Or Heirs... </u>
				</SectionTitle>
				<Container className="pb-28 pt-0">
					<Benefits 
					    data={benefitOne} 
					    background="#312b2b"
						color="#f6f3eb"
						/>
					<Benefits
						imgPos="right"
						data={benefitTwo}
						background="#312b2b"
						color="#f6f3eb"
					/>
				</Container>
			</div>

			{/* <SectionTitle
        preTitle="Watch a video"
        title="Learn how to fullfil your needs"
      >
        This section is to highlight a promo or demo video of your product.
        Analysts says a landing page with video has 3% more conversion rate. So,
        don&apos;t forget to add one. Just like this.
      </SectionTitle>

      <Video videoId="fZ0D0cnR88E" /> */}

			<div className="bg-[#f6f3eb]">
				<SectionTitle title="Here's what our customers said">
					Testimonials is a great way to increase the brand trust and awareness.
					Use this section to highlight your popular customers.
				</SectionTitle>
				<Testimonials />
			</div>
			{/* #062121 */}
			<div className="bg-white">
				<SectionTitle preTitle="FAQ" title="Frequently Asked Questions">
					Answer your customers possible questions here, it will increase the
					conversion rate as well as support or chat requests.
				</SectionTitle>
				<Faq />
			</div>
			<Cta />
		</>
	);
}
