import { FC } from 'react' import { Typography, IconChevronRight } from '@supabase/ui' import { useStore } from 'hooks' import Link from 'next/link' interface Props { framework: string title: string description: string url: string } const ExampleProject: FC = ({ framework, title, description, url }) => { const { ui } = useStore() const { isDarkTheme } = ui return (
{`${framework}
{title}

{description}

) } export default ExampleProject