diff --git a/src/components/layout/FullWidth.tsx b/src/components/layout/FullWidth.tsx index 6067f1a..9b193fc 100644 --- a/src/components/layout/FullWidth.tsx +++ b/src/components/layout/FullWidth.tsx @@ -1,6 +1,7 @@ import { css, cx } from '@styled-system/css' import type { FC, ReactNode } from 'react' import Footer from '@/components/layout/fragments/Footer' +import Header from '@/components/layout/fragments/Header' export interface FullWidthProps { className?: string @@ -10,6 +11,7 @@ export interface FullWidthProps { const FullWidth: FC = ({ className, children }) => { return ( <> +
{children}