src/app/(hero)/projects/metal-roof-installation/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 = 'Metal Roof Installation'const IMAGE = '/image-10.jpg'const IMAGE_ALT ='Metal roof installation in Redstone, Texas using Frontier Metals roofing panels'function Details() {return (<><Imagesrc={IMAGE}size="large"wrap={true}alt={IMAGE_ALT}/><Paragraph>A hailstorm ended the life of an old roof, and the installer neededreplacement panels fast. We measured the existing runs, put the order onthe roll former, and had panels cut to length and on the truck inside aweek.</Paragraph><Paragraph>Re-roofs rarely match the catalog. The existing rake and eave conditionsdidn't line up with a stock profile, so we formed trim to fit what wasactually on the building and sent the closures and sealant that go withthose details — the parts that decide whether wind-driven rain staysoutside.</Paragraph><Paragraph>Full-length panels meant no lap seams across the slope and very littlescrap coming off the roof. The installer finished in two days.</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 /></>)}