import Link from 'next/link'; import { BookOpenIcon, BanknotesIcon, StarIcon } from '@heroicons/react/24/outline' // discord invite link: https://discord.gg/zXYggKUBC2 const features = [ { name: 'The Reactors Premium Subscription', link: 'https://thereactshow.supercast.com/', description: 'Your own premium podcast feed with: bonus content, early releases, AMA. The BEST way to support the show!', icon: StarIcon, highlight: true }, { name: 'My Book', link: '/book', description: 'Foundations of High-Performance React is my take on breaking down how React works internally to help you build better React applications.', icon: BookOpenIcon, }, { name: 'Tip!', link: 'https://buy.stripe.com/cN25nl5x2fZO4M0cMN', description: 'Another great way to directly support the show is to send us a one-time tip! Thank you so much!', icon: BanknotesIcon, } ]; export const metadata = { title: 'Support the Show!', description: 'Show your support for the show with these options!' }; export default async function Page() { return (

Support the Show!

Like The React Show? These are the best ways to support us!

{features.map((feature) => (
{feature.name}
{feature.description}
))}
); }