import { SiNextdotjs, SiLucide, SiVercel, SiCloudflarepages, SiSimpleicons, SiFontawesome, SiShadcnui, SiTailwindcss } from "react-icons/si" import Link from 'next/link' export const footerMessages = [ [ "Built with Next.js", "https://nextjs.org", ], [ "Icons by Lucide", "https://lucide.dev/", ], [ "Icons by Simple Icons", "https://simpleicons.org/", ], [ "Font by Vercel", "https://vercel.com/font", ], [ "Hosted by Cloudflare", "https://workers.cloudflare.com/", ], [ "Icons by Font Awesome", "https://fontawesome.com/", ], [ "Components by Shadcn", "https://ui.shadcn.com/", ], [ "Styled with Tailwind", "https://tailwindcss.com/", ] ] export default function RandomFooterMsg() { const randomIndex = Math.floor(Math.random() * footerMessages.length) const [message, url, icon] = footerMessages[randomIndex] return (
{icon} {message}
) }