From 5c9e96716333cc195abc381a44cc1b0bd2e7ae5d Mon Sep 17 00:00:00 2001 From: SrJuggernaut Date: Mon, 23 Mar 2026 10:29:33 -0600 Subject: [PATCH] feat: add Header component to FullWidth layout --- src/components/layout/FullWidth.tsx | 2 ++ 1 file changed, 2 insertions(+) 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}