manifold/web/pages/cowp.tsx
2022-10-03 17:31:07 +01:00

21 lines
508 B
TypeScript

import Link from 'next/link'
import { Page } from 'web/components/page'
import { SEO } from 'web/components/SEO'
const App = () => {
return (
<Page className="">
<SEO
title="COWP"
description="A picture of a cowpy cowp copwer cowp saying 'salutations'"
url="/cowp"
/>
<Link href="https://www.youtube.com/watch?v=FavUpD_IjVY">
<img src="https://i.imgur.com/Lt54IiU.png" className="cursor-pointer" />
</Link>
</Page>
)
}
export default App