import Link from 'next/link'
import Container from './container'
import cn from 'classnames'
// import { EXAMPLE_PATH } from '~/lib/constants'
const EXAMPLE_PATH = ""
export default function Alert({ preview }: {preview: boolean}) {
return (
{preview ? (
<>
This is a page preview.{' '}
Click here
{' '}
to exit preview mode.
>
) : (
<>
The source code for this blog is{' '}
available on GitHub
.
>
)}