mirror of
				https://github.com/jakejarvis/jarv.is.git
				synced 2025-11-04 05:40:12 -05:00 
			
		
		
		
	* 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
		
			
				
	
	
		
			31 lines
		
	
	
		
			799 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			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;
 |