fix: navigate next13.x upgrade

This commit is contained in:
Cory Dransfeldt 2023-06-17 11:36:33 -07:00
parent f2029bf4a1
commit 5a7a14da50
No known key found for this signature in database
23 changed files with 7959 additions and 101 deletions

View file

@ -28,7 +28,7 @@ export default function AuthorLayout({ children, frontMatter }: Props) {
<>
<PageSEO title={`Band - ${name}`} description={`Band - ${name}`} />
<div className="divide-y divide-gray-200 dark:divide-gray-700">
<div className="space-y-2 pt-6 pb-8 md:space-y-5">
<div className="space-y-2 pb-8 pt-6 md:space-y-5">
<h1 className="text-3xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-4xl sm:leading-10 md:text-6xl md:leading-14">
Band
</h1>
@ -38,8 +38,8 @@ export default function AuthorLayout({ children, frontMatter }: Props) {
<Image
src={bannerimage}
alt="avatar"
width="1250px"
height="579px"
width="1250"
height="579"
className="rounded-sm"
/>
<div className="flex space-x-3 pt-8">
@ -54,7 +54,7 @@ export default function AuthorLayout({ children, frontMatter }: Props) {
<SocialIcon kind="lastfm" href={lastfm} />
</div>
</div>
<div className="prose max-w-none pt-8 pb-8 dark:prose-dark xl:col-span-2">{children}</div>
<div className="prose max-w-none pb-8 pt-8 dark:prose-dark xl:col-span-2">{children}</div>
</div>
</div>
</>