mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-05 19:35:27 -04:00
5a1636baa3
- Replace Biome with oxlint + oxfmt (OXC toolchain) for linting and formatting - Add .oxlintrc.json and .oxfmtrc.json configuration files - Update VS Code settings and devcontainer to use oxc-vscode extension - Remove contact form, Resend email integration, and related server action/schema - Remove unused UI components (accordion, alert, card, tabs, toggle, etc.)
87 lines
2.5 KiB
TypeScript
87 lines
2.5 KiB
TypeScript
import { JsonLd } from "react-schemaorg";
|
|
import type { VideoObject } from "schema-dts";
|
|
|
|
import { PageTitle } from "@/components/layout/page-title";
|
|
import { Video } from "@/components/video";
|
|
import { createMetadata } from "@/lib/metadata";
|
|
|
|
import thumbnail from "./thumbnail.png";
|
|
|
|
export const metadata = createMetadata({
|
|
title: "My Brief Apperance in Hillary Clinton's DNC Video",
|
|
description:
|
|
"My brief apperance in one of Hillary Clinton's 2016 DNC convention videos on substance abuse.",
|
|
canonical: "/hillary",
|
|
openGraph: {
|
|
videos: [
|
|
{
|
|
url: "https://ijyxfbpcm3itvdly.public.blob.vercel-storage.com/convention-ZTUBLwMcmOE8EJ4tNAhpCli4NAHKcG.webm",
|
|
type: "video/webm",
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
const Page = () => (
|
|
<>
|
|
<JsonLd<VideoObject>
|
|
item={{
|
|
"@context": "https://schema.org",
|
|
"@type": "VideoObject",
|
|
name: metadata.title as string,
|
|
description: metadata.description as string,
|
|
contentUrl:
|
|
"https://ijyxfbpcm3itvdly.public.blob.vercel-storage.com/convention-ZTUBLwMcmOE8EJ4tNAhpCli4NAHKcG.webm",
|
|
thumbnailUrl: `${process.env.NEXT_PUBLIC_BASE_URL}${thumbnail.src}`,
|
|
embedUrl: `${process.env.NEXT_PUBLIC_BASE_URL}/hillary`,
|
|
uploadDate: "2016-07-25T00:00:00Z",
|
|
duration: "PT1M51S",
|
|
}}
|
|
/>
|
|
|
|
<PageTitle canonical="/hillary">HRC.mov</PageTitle>
|
|
|
|
<Video
|
|
src={[
|
|
"https://ijyxfbpcm3itvdly.public.blob.vercel-storage.com/convention-ZTUBLwMcmOE8EJ4tNAhpCli4NAHKcG.webm",
|
|
"https://ijyxfbpcm3itvdly.public.blob.vercel-storage.com/convention-T6klrrArGL0IO4QPaloIiIH164UqUC.mp4",
|
|
"https://ijyxfbpcm3itvdly.public.blob.vercel-storage.com/convention.en-uHnecgVCrT9xA8EkzdEaeIwB0rHFC9.vtt",
|
|
]}
|
|
poster={thumbnail.src}
|
|
/>
|
|
|
|
<p className="text-muted-foreground mx-4 mt-5 mb-0 text-center text-sm leading-relaxed">
|
|
Video is property of{" "}
|
|
<a
|
|
href="https://www.hillaryclinton.com/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="font-bold"
|
|
>
|
|
Hillary for America
|
|
</a>
|
|
, the{" "}
|
|
<a
|
|
href="https://democrats.org/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="font-bold"
|
|
>
|
|
Democratic National Committee
|
|
</a>
|
|
, and{" "}
|
|
<a
|
|
href="https://cnnpressroom.blogs.cnn.com/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="font-bold"
|
|
>
|
|
CNN / WarnerMedia
|
|
</a>
|
|
. © 2016.
|
|
</p>
|
|
</>
|
|
);
|
|
|
|
export default Page;
|