mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 15:16:21 -04:00
83 lines
2.1 KiB
TypeScript
83 lines
2.1 KiB
TypeScript
import { NextSeo } from "next-seo";
|
|
import Content from "../components/Content";
|
|
import PageTitle from "../components/page/PageTitle";
|
|
import Video from "../components/media/Video";
|
|
|
|
import thumbnail from "../public/static/images/leo/thumb.png";
|
|
|
|
const Leo = () => (
|
|
<>
|
|
<NextSeo
|
|
title='Facebook App on "The Lab with Leo Laporte"'
|
|
description="Powncer app featured in Leo Laporte's TechTV show."
|
|
openGraph={{
|
|
title: 'Facebook App on "The Lab with Leo Laporte"',
|
|
}}
|
|
/>
|
|
|
|
<PageTitle>Facebook App on "The Lab with Leo Laporte"</PageTitle>
|
|
|
|
<Content>
|
|
<Video
|
|
url={[
|
|
{ src: "/static/images/leo/leo.webm", type: "video/webm" },
|
|
{ src: "/static/images/leo/leo.mp4", type: "video/mp4" },
|
|
]}
|
|
config={{
|
|
// @ts-ignore
|
|
file: {
|
|
attributes: {
|
|
poster: thumbnail.src,
|
|
controlsList: "nodownload",
|
|
preload: "metadata",
|
|
autoPlay: false,
|
|
},
|
|
tracks: [
|
|
{
|
|
kind: "subtitles",
|
|
src: "/static/images/leo/subs.en.vtt",
|
|
srcLang: "en",
|
|
label: "English",
|
|
default: true,
|
|
},
|
|
],
|
|
},
|
|
}}
|
|
controls={true}
|
|
/>
|
|
|
|
<p className="copyright">
|
|
Video is property of{" "}
|
|
<a
|
|
href="https://web.archive.org/web/20070511004304/http://www.g4techtv.ca/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
G4techTV Canada
|
|
</a>{" "}
|
|
&{" "}
|
|
<a href="https://leolaporte.com/" target="_blank" rel="noopener noreferrer">
|
|
Leo Laporte
|
|
</a>
|
|
. © 2007 G4 Media, Inc.
|
|
</p>
|
|
</Content>
|
|
|
|
<style jsx>{`
|
|
.copyright {
|
|
text-align: center;
|
|
font-size: 0.9em;
|
|
line-height: 1.8;
|
|
margin: 1.25em 1em 0.5em;
|
|
color: var(--medium-light);
|
|
}
|
|
|
|
.copyright a {
|
|
font-weight: 700;
|
|
}
|
|
`}</style>
|
|
</>
|
|
);
|
|
|
|
export default Leo;
|