1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 18:10:33 -04:00
jarv.is/pages/birthday.tsx

34 lines
867 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 { TapeIcon } from "../components/Icons";
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>
<TapeIcon /> 1996.MOV
</PageTitle>
<Content>
<Video
webm="/static/images/birthday/birthday.webm"
mp4="/static/images/birthday/birthday.mp4"
thumbnail={thumbnail.src}
/>
</Content>
</>
);
export default Birthday;