@@ -2,18 +2,15 @@ import { ArrowLeft } from 'lucide-react'
22import type { Metadata } from 'next'
33import Link from 'next/link'
44import { FAQ } from '@/lib/blog/faq'
5- import '@/app/(landing)/studio /[slug]/prose-studio.css'
5+ import '@/app/(landing)/blog /[slug]/prose-studio.css'
66import { getAllPostMeta , getPostBySlug , getRelatedPosts } from '@/lib/blog/registry'
77import { buildArticleJsonLd , buildBreadcrumbJsonLd , buildPostMetadata } from '@/lib/blog/seo'
88import { getBaseUrl } from '@/lib/core/utils/urls'
99import {
1010 AnimatedColorBlocks ,
1111 AnimatedColorBlocksVertical ,
1212} from '@/app/(landing)/blog/[slug]/animated-blocks'
13- import {
14- ArticleHeaderItem ,
15- ArticleHeaderMotion ,
16- } from '@/app/(landing)/blog/[slug]/article-header'
13+ import { ArticleHeaderItem , ArticleHeaderMotion } from '@/app/(landing)/blog/[slug]/article-header'
1714import { ArticleSidebar } from '@/app/(landing)/blog/[slug]/article-sidebar'
1815import { ShareButtons } from '@/app/(landing)/blog/[slug]/share-button'
1916import { getPrimaryCategory , getTagCategory } from '@/app/(landing)/blog/tag-colors'
@@ -59,7 +56,7 @@ export default async function Page({ params }: { params: Promise<{ slug: string
5956 < div className = 'mx-auto flex w-full max-w-[1400px] flex-col items-start gap-8 px-6 pb-24 pt-16 xl:flex-row' >
6057 < div className = 'max-w-4xl flex-grow xl:mx-auto' >
6158 < Link
62- href = '/studio '
59+ href = '/blog '
6360 className = 'group mb-8 inline-flex items-center gap-2 border border-[#2A2A2A] bg-[#232323] px-4 py-2 font-season text-[11px] uppercase tracking-widest text-[#999] transition-colors hover:text-[#ECECEC]'
6461 style = { { borderRadius : '5px' } }
6562 >
@@ -115,7 +112,7 @@ export default async function Page({ params }: { params: Promise<{ slug: string
115112 { post . tags . map ( ( tag , i ) => (
116113 < span key = { tag } >
117114 < Link
118- href = { `/studio ?tag=${ encodeURIComponent ( getTagCategory ( tag ) ) } ` }
115+ href = { `/blog ?tag=${ encodeURIComponent ( getTagCategory ( tag ) ) } ` }
119116 className = 'transition-colors hover:text-[#999]'
120117 >
121118 { tag }
0 commit comments