import { Subheading } from "@/components/site/typography" import { Box, Card, Container, Heading, SimpleGrid, Stack, } from "@chakra-ui/react" import { Metadata } from "next" import Image from "next/image" import Link from "next/link" import { showcases } from ".velite" export const metadata: Metadata = { title: "Showcase", description: "A collection of beautiful websites that are built in Chakra UI", openGraph: { images: `/og?title=Showcase`, }, } export default function ShowcasePage() { return ( Showcase Beautiful websites built with Chakra UI {showcases.map(({ title, description, url, image }) => ( {title} {title} {description} ))} ) }