import { BASE_PATH } from 'lib/constants' import { useTheme } from 'next-themes' import Link from 'next/link' import { IconChevronRight } from 'ui' interface ExampleProjectProps { framework: string title: string description: string url: string } const ExampleProject = ({ framework, title, description, url }: ExampleProjectProps) => { const { resolvedTheme } = useTheme() return (
{description}