Footer
LayoutReactFontAwesomeFooter with social links, copyright, and responsive layout.
Default
1 import { Footer } from "@/shared/layout/footer"; 2 3 // Edit these values in shared/config/site.config.ts — the footer reads them all. 4 export const siteConfig = { 5 name: "Turmerrific", 6 author: "Erik Yuntantyo", 7 email: "erik.yuntantyo@gmail.com", 8 social: { 9 github: "erikyuntantyo", 10 linkedin: "erikyuntantyo", 11 }, 12 }; 13 14 // Place in your root layout 15 export default function RootLayout({ children }) { 16 return ( 17 <html> 18 <body> 19 <main>{children}</main> 20 <Footer /> 21 </body> 22 </html> 23 ); 24 } 25 26 // Includes: 27 // - Copyright line (© 2025 {author} — fork turmerrific) 28 // - Social icons (GitHub, Email, LinkedIn) 29 // - Responsive flex layout 30 // - Bottom padding on mobile for floating nav clearance