this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add footer across all pages

BK610 141df268 e485e8e8

+11
+2
app/layout.tsx
··· 2 2 import { PostHogProvider } from "./providers"; 3 3 import type { Metadata } from "next"; 4 4 import NavBar from "@/components/NavBar"; 5 + import Footer from "@/components/Footer"; 5 6 6 7 export const metadata: Metadata = { 7 8 title: "Bailey Kane", ··· 49 50 <NavBar /> 50 51 <main>{children}</main> 51 52 </div> 53 + <Footer /> 52 54 </div> 53 55 </PostHogProvider> 54 56 </body>
+9
components/Footer.tsx
··· 1 + export default function Footer(): React.ReactElement { 2 + return ( 3 + <footer className="mt-auto w-full h-fit min-h-16 flex"> 4 + <div className="mx-auto my-auto text-xs text-stone-700 dark:text-stone-400"> 5 + Love, Bailey. 6 + </div> 7 + </footer> 8 + ); 9 + }