import { PlusSmIcon, ArrowDownIcon } from '@heroicons/react/solid' import classNames from 'classnames' import Image from 'next/image' import { PopupGuildCard } from './PopupGuildCard/PopupGuildCard' export interface PopupGuildProps { className?: string } export const PopupGuild: React.FC = (props) => { const { className } = props return (
} description='Create your own guild and manage everything within a few clicks !' link={{ icon: , text: 'Create a Guild', href: '/application/guilds/create' }} /> } description='Talk, meet and have fun with new friends by joining any interesting guild !' link={{ icon: , text: 'Join a Guild', href: '/application/guilds/join' }} />
) }