Skip to content

Commit a51df5e

Browse files
committed
feat(website): add PageHeader component into Body part of the BaseLayout layout component
1 parent 6ca1f12 commit a51df5e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apps/website/src/layouts/base-layout/base-layout-body/base-layout-body.astro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
import type { HTMLAttributes } from 'astro/types';
33
import { twm } from '@/utilities/twm';
4+
import { PageHeader } from '@/components/page-header';
45
import { baseLayoutBodyStyles } from './base-layout-body.styles';
56
67
type Props = HTMLAttributes<'body'>;
@@ -9,5 +10,6 @@ const { class: className, ...others } = Astro.props;
910
---
1011

1112
<body class={twm(baseLayoutBodyStyles(), className)} {...others}>
13+
<PageHeader />
1214
<slot />
1315
</body>

0 commit comments

Comments
 (0)