1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 22:48:29 -04:00
jarv.is/pages/birthday.tsx
Jake Jarvis 283eb62446
less corny header and note meta icons (#746)
* less corny header and note meta icons

* swap out more twemojis

* indicate active page in nav bar

* update favicons

* extract `<MenuLink />` into its own component

* change hover effect to an underline

* cropped header photo
2022-01-27 10:06:26 -05:00

31 lines
799 B
TypeScript

import { NextSeo } from "next-seo";
import Content from "../components/Content/Content";
import PageTitle from "../components/PageTitle/PageTitle";
import Video from "../components/Video/Video";
import thumbnail from "../public/static/images/birthday/thumb.png";
const Birthday = () => (
<>
<NextSeo
title="🎉 Cranky Birthday Boy on VHS Tape 📼"
description="The origin of my hatred for the Happy Birthday song."
openGraph={{
title: "🎉 Cranky Birthday Boy on VHS Tape 📼",
}}
/>
<PageTitle>📼 1996.MOV</PageTitle>
<Content>
<Video
webm="/static/images/birthday/birthday.webm"
mp4="/static/images/birthday/birthday.mp4"
thumbnail={thumbnail.src}
/>
</Content>
</>
);
export default Birthday;