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/leo/thumb.png";
const Copyright = styled("p", {
textAlign: "center",
fontSize: "0.9em",
lineHeight: 1.8,
margin: "1.25em 1em 0 1em",
color: "$mediumLight",
});
const Leo = () => {
return (
<>
Facebook App on "The Lab with Leo Laporte"
Video is property of{" "}
G4techTV Canada
{" "}
&{" "}
Leo Laporte
. © 2007 G4 Media, Inc.
>
);
};
export default Leo;