From 5ffb305bb0b88e9377326145d6fa946980a3e00d Mon Sep 17 00:00:00 2001 From: SrJuggernaut Date: Tue, 17 Mar 2026 16:44:54 -0600 Subject: [PATCH] feat: add footer component to full-width layout --- src/components/layout/FullWidth.tsx | 7 +- src/components/layout/fragments/Footer.tsx | 124 +++++++++++++++++++++ 2 files changed, 130 insertions(+), 1 deletion(-) create mode 100644 src/components/layout/fragments/Footer.tsx diff --git a/src/components/layout/FullWidth.tsx b/src/components/layout/FullWidth.tsx index 312dc4c..f7ebe41 100644 --- a/src/components/layout/FullWidth.tsx +++ b/src/components/layout/FullWidth.tsx @@ -7,7 +7,12 @@ export interface FullWidthProps { } const FullWidth: FC = ({ className, children }) => { - return
{children}
+ return ( + <> +
{children}
+