Skip to content

Commit

Permalink
add hero to other pages
Browse files Browse the repository at this point in the history
  • Loading branch information
jakewheeler committed Oct 30, 2024
1 parent 71e9246 commit 93f1115
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/app/case-studies/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import Hero from '../components/Hero';

export default function CaseStudies() {
return (
<div>
<Hero
header="See how DIBBs solutions have helped others"
subheader="Explore our case studies to see the impact of DIBBs."
/>
</div>
);
}
12 changes: 12 additions & 0 deletions src/app/engage-with-us/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import Hero from '../components/Hero';

export default function EngageWithUs() {
return (
<div>
<Hero
header="Get started with DIBBs products"
subheader="Learn how your jurisdiction can start working with the DIBBs team."
/>
</div>
);
}

0 comments on commit 93f1115

Please sign in to comment.