Template Examples

View examples of the page templates in action. These pages demonstrate how to use each template type.

How to Use

To use these templates in your pages, import them and pass the required props:

---
import ProviderPageTemplate from '../../templates/ProviderPageTemplate.astro';
---

<ProviderPageTemplate
  title="Your Page Title"
  description="Your page description"
  breadcrumbItems={[...]}
  providerName="Provider Name"
  // ... other props
/>

See TEMPLATES-README.md for complete documentation.