hydration warning

This commit is contained in:
Wes Bos 2023-02-21 14:34:15 -05:00
parent 7dbc810f2b
commit f7936d2e50

View file

@ -5,34 +5,34 @@ import 'normalize.css';
export default function Layout({ children }) { export default function Layout({ children }) {
return ( return (
<main className="Main"> <main className="Main">
<Header /> <Header />
{children} {children}
<footer> <footer>
<center ya-i-used-a-center-tag="sue me"> <center ya-i-used-a-center-tag="sue me">
<p> <p>
Made by <a href="https://wesbos.com">Wes Bos</a> with{' '} Made by <a href="https://wesbos.com">Wes Bos</a> with{" "}
<a href="https://www.remix.run">Remix</a> ©{' '} <a href="https://www.remix.run">Remix</a> ©{" "}
{new Date().getFullYear()} {new Date().getFullYear()}
</p> </p>
<p> <p>
Source on{' '} Source on{" "}
<a href="https://github.com/wesbos/awesome-uses/">GitHub</a>. Add <a href="https://github.com/wesbos/awesome-uses/">GitHub</a>. Add
yourself! yourself!
</p> </p>
<p> <p>
Icons from <a href="https://icons8.com">icons8.com</a> Icons from <a href="https://icons8.com">icons8.com</a>
</p> </p>
<p> <p>
Domain provided by <a href="https://get.tech/">.Tech</a> Domain provided by <a href="https://get.tech/">.Tech</a>
</p> </p>
<p> <p>
Hosted on <a href="https://netlify.com">Netlify</a> Hosted on <a href="https://netlify.com">Netlify</a>
</p> </p>
<p>Rendered Fresh</p> <p suppressHydrationWarning>Rendered Fresh</p>
</center> </center>
</footer> </footer>
</main> </main>
); );
}; };