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

Configure Feed

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

Create SocialLink component to link to social profiles

BK610 449f723a 06b5d865

+16
+16
components/SocialLink.js
··· 1 + export default function SocialLink({ href, icon, children }) { 2 + const iconURL = icon ? icon : new URL(href).origin + "/favicon.ico"; 3 + console.log("Social link for", href); 4 + console.log("icon", icon); 5 + console.log("iconUrl:", iconURL); 6 + 7 + return ( 8 + <a 9 + href={href} 10 + className="p-2 rounded-full dark:text-white bg-stone-100 dark:bg-stone-700 hover:bg-stone-200 hover:dark:bg-stone-600 border border-stone-300 flex gap-1" 11 + > 12 + {children} 13 + <img className="h-6 w-6" src={iconURL} /> 14 + </a> 15 + ); 16 + }