import { NextSeo } from "next-seo";
import Content from "../components/Content";
import PageTitle from "../components/PageTitle";
import Link from "../components/Link";
import Video from "../components/Video";
import { styled } from "../lib/styles/stitches.config";
import thumbnail from "../public/static/images/hillary/thumb.png";
const Copyright = styled("p", {
textAlign: "center",
fontSize: "0.9em",
lineHeight: 1.8,
margin: "1.25em 1em 0 1em",
color: "$mediumLight",
});
const Hillary = () => {
return (
<>
My Brief Apperance in Hillary Clinton's DNC Video
Video is property of{" "}
Hillary for America
, the{" "}
Democratic National Committee
, and{" "}
CNN / WarnerMedia
. © 2016.
>
);
};
export default Hillary;