src/app/(hero)/panels/_blocks/panels.tsximport { Section } from '@/components/section'import { Grid } from '@/components/grid'import { Heading } from '@/components/heading'import { PanelProfileCard } from '@/components/panel-profile-card'import { Paragraph } from '@/components/paragraph'import { ColorSwatchGrid } from '@/components/color-swatch'import { PANEL_PROFILES, PANEL_COLORS, COLOR_DISCLAIMER } from '@/catalog'/*** Every panel profile in the catalog, including the three without an* interactive 3D model. The card treatment is identical, so the grid does not* need to know which profiles the viewer supports.*/export default function Panels() {return (<><Sectionid="panels"className="bg-body py-20 md:py-28"><div className="mb-12 max-w-3xl md:mb-16"><Heading as="h2">Compare Profiles</Heading><Heading as="h3">Three Panel Profiles, One Coordinated System</Heading><Paragraphcolor="text-contrast-light"margin="mb-0">Each profile is manufactured to order and pairs with matching trim,closures, and fasteners so the package arrives complete.</Paragraph></div><Gridcols="grid-cols-1 sm:grid-cols-2 lg:grid-cols-3"gap="gap-6 lg:gap-8">{PANEL_PROFILES.map((panel) => (<PanelProfileCardkey={panel.slug}panel={panel}href={`/panels/${panel.slug}`}/>))}</Grid></Section><Sectionid="colors"className="bg-body2 py-20 md:py-28"><div className="mb-10 max-w-3xl md:mb-12"><Heading as="h2">Finishes</Heading><Heading as="h3">Factory-Applied Color on Every Profile</Heading><Paragraphcolor="text-contrast-light"margin="mb-0">Panels, trim, and accessories are matched from the same standardcolor line so an elevation reads as one system.</Paragraph></div><ColorSwatchGridcolors={PANEL_COLORS}className="mb-8"/><ParagraphfontSize="text-sm"color="text-contrast-light"margin="mb-0"className="max-w-3xl">{COLOR_DISCLAIMER}</Paragraph></Section></>)}