manifold/web/pages/cowp.tsx

21 lines
481 B
TypeScript
Raw Permalink Normal View History

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