~chrono/personal-website-alyx

06516190b1dec9be3e3a8191a536cf0de9cd6fc1 — Michael Gummere 4 months ago 4b334e7
update public socials
1 files changed, 23 insertions(+), 3 deletions(-)

M components/Footer/Footer.tsx
M components/Footer/Footer.tsx => components/Footer/Footer.tsx +23 -3
@@ 9,6 9,7 @@ import BrandDiscord from "https://deno.land/x/tabler_icons_tsx@0.0.6/tsx/brand-d
import BrandLinkedIn from "https://deno.land/x/tabler_icons_tsx@0.0.6/tsx/brand-linkedin.tsx";
import BrandLastFM from "https://deno.land/x/tabler_icons_tsx@0.0.6/tsx/brand-lastfm.tsx";
import BrandInstagram from "https://deno.land/x/tabler_icons_tsx@0.0.6/tsx/brand-instagram.tsx";
import BrandYouTube from "https://deno.land/x/tabler_icons_tsx@0.0.6/tsx/brand-youtube.tsx";
import BrandSourcehut from "./BrandSourcehut.tsx";

// SplashText


@@ 24,6 25,7 @@ const iconMap = {
  twitter: BrandTwitter,
  twitch: BrandTwitch,
  instagram: BrandInstagram,
  youtube: BrandYouTube,
};

export default function Footer() {


@@ 71,10 73,10 @@ export default function Footer() {
    "sourcehut",
    "github",
    "twitch",
    "twitter",
    // "twitter",
    "discord",
    "instagram",
    "youtube",
    // "instagram",
    // "youtube",
    "linkedin",
    "lastfm",
  ];


@@ 161,6 163,24 @@ export default function Footer() {
          </div>
        </div>

        {menus.map((item) => (
          <div className="mb-4" key={item.title}>
            <div className="font-bold">{item.title}</div>
            <ul className="mt-2">
              {item.children.map((child) => (
                <li className="mt-2" key={child.name}>
                  <a
                    className="text-gray-700 hover:text-violet-400"
                    href={child.href}
                  >
                    {child.name}
                  </a>
                </li>
              ))}
            </ul>
          </div>
        ))}

        <div className="mb-4" key="git-hosting">
          <div className="font-extrabold mb-1.5">Find my projects here!</div>
          <div className="grid gap-3 row-auto grid-cols-3 w-fit">