// @flow import * as React from 'react' import NextHead from 'next/head' export type SocialCardProps = { title?: string, description?: string, image?: string, imageSize?: number } const defaultProps: SocialCardProps = { title: 'Roleypoly', description: 'Tame your Discord roles.', image: 'https://rp.kat.cafe/static/social.png', imageSize: 200 } const SocialCards: React.StatelessFunctionalComponent = (props) => { props = { ...defaultProps, ...props } return } export default SocialCards