From 4e3d6212df8b86dafe47cb2798501511cd717bcd Mon Sep 17 00:00:00 2001 From: Kenneth Date: Mon, 27 Jan 2025 00:37:59 +0000 Subject: [PATCH] feat: add footer --- app/root.tsx | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/app/root.tsx b/app/root.tsx index d18b3b3..7715162 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -1,10 +1,11 @@ import { - isRouteErrorResponse, + Link, Links, Meta, Outlet, Scripts, ScrollRestoration, + isRouteErrorResponse, } from "react-router" import type { Route } from "./+types/root" @@ -37,6 +38,29 @@ export function Layout({ children }: { children: React.ReactNode }) { {children} + + )