src/app/(hero)/projects/commercial-building/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 = 'Commercial Building'const IMAGE = '/image-5.jpg'const IMAGE_ALT ='Commercial metal building in Redstone, Texas clad with Frontier Metals roof and wall panels'function Details() {return (<><Imagesrc={IMAGE}size="large"wrap={true}alt={IMAGE_ALT}/><Paragraph>Office up front, open work area behind, and a street-facing elevationthe owner had to be happy looking at every morning. The architectspecified a standing seam roof and a two-tone wall with a horizontalaccent band running the length of the building.</Paragraph><Paragraph>Accent bands are unforgiving — the eye catches a quarter inch of driftacross a hundred feet. We ran the field panels and the band from thesame coil batch, formed the custom entry-canopy trim to the architect'sdetail, and takeoff-checked every quantity against the plan set beforeanything hit the roll former.</Paragraph><Paragraph>The band lines up corner to corner and the roof and wall colors read asone system. Five years in, the owner's exterior maintenance has been apressure washer.</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 /></>)}