src/app/(hero)/about/_blocks/story.tsximport { Section } from '@/components/section'import { Columns, Column } from '@/components/columns'import { Image } from '@/components/image'import { Heading } from '@/components/heading'import { Paragraph } from '@/components/paragraph'import { Span } from '@/components/span'import { List, Li } from '@/components/list'import { serviceArea } from '@/config'import checkIcon from '@iconify/icons-lucide/check'/** Company narrative: how Frontier grew from panels and trim into full packages. */export default function Story() {return (<Section className="bg-body py-20 md:py-28"><Columnscols="grid-cols-1 lg:grid-cols-12"gap="gap-10 lg:gap-16"align="items-start"><Column className="lg:col-span-7"><div className="mb-6"><Heading as="h2">Our Story</Heading><Headingas="h3"margin="mb-0">From a Regional Panel Shop to Complete Steel Packages</Heading></div><Paragraphcolor="text-contrast-light"margin="mb-4"className="text-pretty">Frontier Metals began as a regional panel and trim operation servingcontractors, farms, and ranches. Over more than 25 years, the companyexpanded its manufacturing capabilities to include roofing and wallpanels, custom trim, structural components, and coordinated steelbuilding packages.</Paragraph><Paragraphcolor="text-contrast-light"margin="mb-0"className="text-pretty">Today, Frontier supports agricultural, commercial, industrial, andresidential construction throughout West Texas and neighboringregions. Our team combines practical project knowledge with modernproduction equipment to deliver accurate components, dependable leadtimes, and straightforward service.</Paragraph><div className="mt-8 flex flex-col items-start"><Headingas="h4"margin="mb-3">Where We Work</Heading><Listvariant="unstyled"margin="mb-0"className="grid grid-cols-1 gap-x-8 gap-y-2 sm:grid-cols-2">{serviceArea.areas.map((area) => (<Likey={area}icon={checkIcon}iconSize="w-5 h-5"className="text-accent"><Spancolor="text-contrast-light"fontSize="text-base"fontWeight="font-medium">{area}</Span></Li>))}</List></div></Column><Column className="lg:col-span-5"><Imagesrc="/image-14.jpg"alt="Frontier Metals operator forming a custom trim piece on a press brake"size="large"rounded="rounded-none"aspect="aspect-[4/5]"className="w-full border border-accent3-dark object-cover"/></Column></Columns></Section>)}