Fixes.
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
import { Fragment, useId } from 'react'
|
||||
import Image from 'next/image'
|
||||
import Link from 'next/link'
|
||||
import clsx from 'clsx'
|
||||
|
||||
import NavBar from '@/components/NavBar'
|
||||
import posterImage from '@/images/poster.png'
|
||||
|
||||
@@ -54,10 +54,6 @@ export default async function Page({ params }) {
|
||||
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>{`${episode.title} - Their Side`}</title>
|
||||
<meta name="description" content={episode.description} />
|
||||
</Head>
|
||||
<article className="py-16 lg:py-36">
|
||||
<Container>
|
||||
<header className="flex flex-col">
|
||||
|
||||
@@ -27,7 +27,7 @@ export default function Player({ episode, startTime, endTime, children }) {
|
||||
src: episode.audio.src,
|
||||
type: episode.audio.type,
|
||||
},
|
||||
link: `/${episode.id}`,
|
||||
link: `/${episode.slug}`,
|
||||
}),
|
||||
[episode]
|
||||
)
|
||||
|
||||
@@ -47,7 +47,7 @@ export function AudioPlayer() {
|
||||
</div>
|
||||
<div className="mb-[env(safe-area-inset-bottom)] flex flex-1 flex-col gap-3 overflow-hidden p-1">
|
||||
<Link
|
||||
href={player.meta.link}
|
||||
href={`/podcast${player.meta.link}`}
|
||||
className="truncate text-center text-sm font-bold leading-6 md:text-left"
|
||||
title={player.meta.title}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user