trying this

This commit is contained in:
Laker Turner 2025-03-22 08:57:53 +00:00
parent e142e6b38f
commit a20dc1ee0b
No known key found for this signature in database
18 changed files with 170 additions and 81 deletions

View file

@ -2,6 +2,7 @@ import conf from "~/site.config";
// todo: add blog detection
export const titleConstructor = (title: string) => {
console.log(title)
if (!title) return conf.siteName;
return `${title} | ${conf.siteName}`;
};