diff --git a/pages/_app.tsx b/pages/_app.tsx index 6b38b18..c9766bf 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -2,7 +2,8 @@ import Footer from "../components/footer"; import Navbar from "../components/navbar"; import "./global.css"; import styles from "./layout.module.css"; -import type { AppProps } from 'next/app' +import type { AppProps } from 'next/app'; +import Head from 'next/head'; export const metadata = { title: { @@ -18,8 +19,12 @@ export const metadata = { - export default function App ({ Component, pageProps }: AppProps) { + export default function App ({ Component, pageProps}: AppProps) { return ( +
+ + The Wild Thistle Productions +
@@ -27,6 +32,7 @@ export const metadata = {
+
); } \ No newline at end of file diff --git a/pages/about.tsx b/pages/about.tsx index ede7ca9..05b5011 100644 --- a/pages/about.tsx +++ b/pages/about.tsx @@ -3,6 +3,7 @@ import Image from "next-image-export-optimizer"; import Link from "next/link"; import { ExternalLink } from "react-feather"; import PageTitle from "../components/page-title"; +import Head from 'next/head'; export const metadata = { title: "About", @@ -10,9 +11,14 @@ export const metadata = { export default function About() { return ( +
+ + About | The Wild Thistle Productions +
About -
); + +
); } diff --git a/pages/contact.tsx b/pages/contact.tsx index 15e080f..2479de6 100644 --- a/pages/contact.tsx +++ b/pages/contact.tsx @@ -1,4 +1,5 @@ import styles from "./contact.module.css"; +import Head from 'next/head'; export const metadata = { title: "Contact Us", @@ -6,6 +7,10 @@ export const metadata = { export default function Contact () { return ( +
+ + Contact | The Wild Thistle Productions +

Leave A Comment

@@ -29,5 +34,6 @@ export default function Contact () {
+ ); } diff --git a/pages/shows.js b/pages/shows.js index 690187e..2cdf46f 100644 --- a/pages/shows.js +++ b/pages/shows.js @@ -5,8 +5,8 @@ import { ExternalLink } from "react-feather"; import PageTitle from "../components/page-title"; import React from 'react'; import fetch from 'node-fetch'; -// import { getLatestEpisodes } from "."; -import { InferGetStaticPropsType, GetStaticProps } from 'next' +import { InferGetStaticPropsType, GetStaticProps } from 'next'; +import Head from 'next/head'; export const metadata = { title: "Shows", @@ -16,6 +16,10 @@ export default function Shows ({episodes}) { console.log(episodes[0]["images"][0]["url"]); return ( +
+ + Shows | The Wild Thistle Productions +
Shows @@ -40,7 +44,8 @@ export default function Shows ({episodes}) {
View Episode Transcripts - ); + + ); }