import { TOOLS } from '@/app/tools/tools'; import { baseOptions } from '@/lib/layout.shared'; import { articleSource, compareSource } from '@/lib/source'; import { MailIcon } from 'lucide-react'; import Link from 'next/link'; import { Logo } from './logo'; export async function Footer() { const articles = (await articleSource.getPages()).sort( (a, b) => b.data.date.getTime() - a.data.date.getTime(), ); const year = new Date().getFullYear(); return (
); } function Links({ data }: { data: { title: string; url: string }[] }) { return ( ); } function Social() { return (
GitHub X Discord Operational
); }