copy: rename site branding to Krishna

This commit is contained in:
OpenCode Worker
2026-06-03 12:51:00 -05:00
parent 05440d2d5e
commit b28a542a57
15 changed files with 13 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
import { notFound } from 'next/navigation'
import Link from 'next/link'
import { getPosts, getPost, tagToSlug } from '@/lib/posts'
import { TableOfContents } from '@/components/blog/TableOfContents'
import { TableOfContents } from '@/components/posts/TableOfContents'
import { ScrollToTop } from '@/components/ui/ScrollToTop'
import { ReadingProgress } from '@/components/ui/ReadingProgress'
@@ -17,7 +17,7 @@ export async function generateMetadata({ params }: { params: Promise<{ slug: str
const slug = (await params).slug
const post = await getPost(slug)
if (!post) return { title: 'Not Found' }
return { title: `${post.title} | blog` }
return { title: post.title }
}
export default async function PostPage({ params }: { params: Promise<{ slug: string }> }) {

View File

@@ -1,5 +1,5 @@
import { getPosts } from '@/lib/posts'
import { PostSearch } from '@/components/blog/PostSearch'
import { PostSearch } from '@/components/posts/PostSearch'
export const metadata = { title: 'Posts' }