diff --git a/src/components/layout/FullWidth.tsx b/src/components/layout/FullWidth.tsx index 9b193fc..312dc4c 100644 --- a/src/components/layout/FullWidth.tsx +++ b/src/components/layout/FullWidth.tsx @@ -1,7 +1,5 @@ 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 @@ -9,13 +7,7 @@ export interface FullWidthProps { } const FullWidth: FC = ({ className, children }) => { - return ( - <> -
-
{children}
-