src/app/(hero)/projects/pole-barn/content.tsximport { Heading } from '@/components/heading'import { Paragraph } from '@/components/paragraph'import { Image } from '@/components/image'import { ProjectCaseStudy } from '@/components/project-case-study'export const TITLE = 'Pole Barn'const IMAGE = '/building-1.jpg'const IMAGE_ALT ='Pole barn near Redstone, Texas covered with Frontier Metals roofing and wall panels'function Details() {return (<><Imagesrc={IMAGE}size="large"wrap={true}alt={IMAGE_ALT}/><Paragraph>A family operation near Redstone needed hay and trailer cover on abudget that wouldn't stretch to an enclosed shop. Post-frame gave themthe square footage; the panel package decides how long that coveractually lasts.</Paragraph><Paragraph>We built the order in two phases on purpose. Phase one covered the roofand three walls so they could get hay under cover before cutting. Phasetwo, the fourth wall and a set of enclosed bays, is already priced andspecified — same profile, same color run, so it will match when they'reready.</Paragraph><Paragraph>Phasing let them spend against the season instead of all at once, and itkeeps the finished building looking like one project rather than two.</Paragraph></>)}export function Content() {return (<ProjectCaseStudy title={TITLE}><Details /></ProjectCaseStudy>)}export function BlogContent() {return (<><Headingas="h2"styleAs="h3"color="text-contrast"className="normal-case!">{TITLE}</Heading><Details /></>)}