import Text from '@views/components/common/Text/Text'; import clsx from 'clsx'; import React from 'react'; import OutwardArrowIcon from '~icons/material-symbols/arrow-outward'; type Props = { className?: string; }; interface LinkItem { text: string; url: string; } const links: LinkItem[] = [ // { // text: 'Feedback Form', // url: '#', // }, // { // text: 'Apply to Longhorn Developers', // url: '#', // }, { text: 'Become a Beta Tester', url: 'https://forms.gle/Y9dmQAb1yzW5PRg48', }, ]; /** * The "From The Team" section of the calendar website * @returns */ export default function TeamLinks({ className }: Props): JSX.Element { return (
From the Team {links.map(link => ( {link.text} ))}
); }