src/app/(hero)/about/_blocks/cta.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 for /about. */export default function Cta() {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">Tell Us What You Are Building</Heading><Paragraphvariant="large"color="text-accent3"margin="mb-8"className="max-w-2xl text-pretty">Send dimensions, drawings, or a rough sketch. We will review the scope,flag anything that looks unclear, and put together a material list youcan build from.</Paragraph><Buttons margin="mt-0 mb-0"><Buttonhref={cta.quote.href}size="medium"dark>{cta.quote.label}</Button><Buttonhref="/contact"variant="outline"size="medium"dark>Contact Us</Button></Buttons></Section>)}