diff --git a/src/components/PageTitle.tsx b/src/components/PageTitle.tsx index a1423e2..5a0f511 100644 --- a/src/components/PageTitle.tsx +++ b/src/components/PageTitle.tsx @@ -6,7 +6,7 @@ export function PageTitle({ title, tagline }: const location = useLocation; useEffect(() => { - document.title = `Convex CMS${title ? ` | ${title}` : ''}`; + document.title = `Convex Blog${title ? ` | ${title}` : ''}`; }, [location, title]) return (