Skip to content

Commit

Permalink
title changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kchenturtles committed Nov 13, 2023
1 parent ad15c4f commit b48e4fa
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 6 deletions.
10 changes: 8 additions & 2 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand All @@ -18,15 +19,20 @@ export const metadata = {



export default function App ({ Component, pageProps }: AppProps) {
export default function App ({ Component, pageProps}: AppProps) {
return (
<div>
<Head>
<title>The Wild Thistle Productions</title>
</Head>
<main>
<Navbar />
<div className={styles.content}>
<Component {...pageProps} />
</div>
<Footer />
</main>
</div>
);
}

8 changes: 7 additions & 1 deletion pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,22 @@ 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",
};

export default function About() {
return (
<div>
<Head>
<title>About | The Wild Thistle Productions</title>
</Head>
<main>
<PageTitle>
About
</PageTitle>
</main>);
</main>
</div>);
}
6 changes: 6 additions & 0 deletions pages/contact.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
import styles from "./contact.module.css";
import Head from 'next/head';

export const metadata = {
title: "Contact Us",
};

export default function Contact () {
return (
<div>
<Head>
<title>Contact | The Wild Thistle Productions</title>
</Head>
<main>
<div className={`section container ${styles.main}`}>
<h1>Leave A Comment </h1>
Expand All @@ -29,5 +34,6 @@ export default function Contact () {
</div>
</div>
</main>
</div>
);
}
11 changes: 8 additions & 3 deletions pages/shows.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -16,6 +16,10 @@ export default function Shows ({episodes}) {
console.log(episodes[0]["images"][0]["url"]);

return (
<div>
<Head>
<title>Shows | The Wild Thistle Productions</title>
</Head>
<main>
<PageTitle>
Shows
Expand All @@ -40,7 +44,8 @@ export default function Shows ({episodes}) {
</div>
<Link className = {`button ${styles.transcripts}`} href = "https://drive.google.com/drive/folders/1Az_03z0v7c8jZdKIGyCo5ssf9DPwK1F_">View Episode Transcripts</Link>
</div>
</main>);
</main>
</div>);

}

Expand Down

0 comments on commit b48e4fa

Please sign in to comment.