Home / Templates / Speedwell / Components / Page Header

Page Header

src/components/page-header.tsx
import { Heading } from '@/components/heading'
import { clsx } from 'clsx'
import type { ReactNode } from 'react'
export interface PageHeaderProps {
/** Page title content */
children: ReactNode
/** Additional CSS classes */
className?: string
}
export function PageHeader({ children, className = '' }: PageHeaderProps) {
return (
<div className={clsx(className)}>
<div className="container text-center mx-auto px-6 lg:px-8 pb-8 max-w-7xl">
<Heading as="h1">{children}</Heading>
</div>
</div>
)
}

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