page.tsx

src/app/(hero)/products/page.tsx
import { PageWrapper } from '@/components/page-wrapper'
import { generatePageMetadata, type PageMetadata } from '@/utils/page-helpers'
import { baseURL } from '@/app/metadata'
import { STRUCTURAL_COMPONENTS, ACCESSORY_PRODUCTS } from '@/catalog'
import { company } from '@/config'
import Hero from './_blocks/hero'
import Products from './_blocks/products'
import Cta from './_blocks/cta'
function Content() {
return (
<>
<Hero />
<Products />
<Cta />
</>
)
}
const metadata: PageMetadata = {
title: `Steel Products: Panels, Trim, Components | ${company.name}`,
description:
'Metal roofing and wall panels, structural components, trim, fasteners and accessories, and complete steel building packages, all manufactured to order by Frontier Metals.',
slug: 'products',
keywords: [
'metal roofing panels',
'wall and liner panels',
'structural steel components',
'metal trim',
'metal roofing fasteners',
'steel building packages',
],
focusKeyword: 'steel building products',
publishDate: '2026-07-15T00:00:00Z',
modifiedDate: '2026-07-15T00:00:00Z',
alternates: {
canonical: '/products',
},
openGraph: {
image: {
url: '/logo.png',
alt: `${company.name} logo`,
},
},
structuredData: [
{
'@context': 'https://schema.org',
'@type': 'BreadcrumbList',
itemListElement: [
{ '@type': 'ListItem', position: 1, name: 'Home', item: baseURL },
{
'@type': 'ListItem',
position: 2,
name: 'Products',
item: `${baseURL}/products`,
},
],
},
{
'@context': 'https://schema.org',
'@type': 'ItemList',
name: 'Steel Products',
itemListElement: [...STRUCTURAL_COMPONENTS, ...ACCESSORY_PRODUCTS].map(
(product, index) => ({
'@type': 'ListItem',
position: index + 1,
name: product.name,
url: `${baseURL}/products#${product.slug}`,
})
),
},
],
}
export const generateMetadata = () => generatePageMetadata(metadata)
export default function Page() {
return (
<PageWrapper metadata={metadata}>
<Content />
</PageWrapper>
)
}

Support

Talk to the developers of this project to learn more

We have been building professional websites for big clients for over 15 years. Gallop templates and blocks is our best foundation for SEO websites and web apps.

© 2026 Web Plant Media, LLC