Skip to content

Commit

Permalink
feat: adding footer
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasgriffintn committed Aug 25, 2024
1 parent 6ec61c0 commit 5d61d0a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions apps/web/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,27 @@ export function Layout({ children }: { children: React.ReactNode }) {
</div>
</header>
<main>{children}</main>
<footer className="w-full py-4 px-4 sm:px-6 lg:px-8">
<div className="w-full max-w-3xl py-4 px-4 sm:px-6 lg:px-8 m-auto items-center text-center">
<p className="text-muted-foreground text-xs text-center">
Please note that this application was created for research
purposes only, it is not the intention to cause any negative
affects to the sites that the systems store or display. If you
would like your site removed from the system, please contact me.
</p>
</div>
<div className="flex items-center justify-center gap-2">
<span className="text-muted-foreground text-xs">
Created by{' '}
<a href="https://nicholasgriffin.dev">Nicholas Griffin</a>
</span>
<span className="text-muted-foreground text-xs"></span>
<span className="text-muted-foreground text-xs">
Powered by <a href="https://cloudflare.com">Cloudflare</a> and{' '}
<a href="https://remix.run">Remix</a>
</span>
</div>
</footer>
</div>
<ScrollRestoration />
<Scripts />
Expand Down

0 comments on commit 5d61d0a

Please sign in to comment.