src/app/(hero)/contact/_blocks/quote.tsximport { Section } from '@/components/section'import { Heading } from '@/components/heading'import { Paragraph } from '@/components/paragraph'import { Buttons } from '@/components/buttons'import { Button } from '@/components/button'import { cta } from '@/config'/*** Closing call to action. Points at the single quote form on /#quote so there* is exactly one quote form on the site. Matches the dark CTA band used to* close every other page.*/export default function Quote() {return (<SectionimageSrc="/panels-1.jpg"imageAlt=""overlayColor="bg-accent2/88"className="py-20 lg:py-28"><Headingas="h3"color="text-overlay-text"margin="mb-4">Send Us the Project Details</Heading><Paragraphvariant="large"color="text-accent3"margin="mb-8"className="max-w-2xl text-pretty">Our quote form is the quickest route to a priced material list. The moredetail you send, the fewer rounds it takes to get it right.</Paragraph><Buttons margin="mt-0 mb-0"><Buttonhref={cta.quote.href}size="medium"dark>{cta.quote.label}</Button><Buttonhref={cta.call.href}variant="outline"size="medium"dark>{cta.call.label}</Button></Buttons></Section>)}