File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ export async function generateMetadata({
1515 params,
1616} : MetadataProps ) : Promise < Metadata > {
1717 const { locale } = await params ;
18- const t = await getTranslations ( { locale, namespace : "Blogs " } ) ;
18+ const t = await getTranslations ( { locale, namespace : "Blog " } ) ;
1919
2020 return constructMetadata ( {
21- page : "Blogs " ,
21+ page : "Blog " ,
2222 title : t ( "title" ) ,
2323 description : t ( "description" ) ,
2424 locale : locale as Locale ,
@@ -31,7 +31,7 @@ export default async function Page({ params }: { params: Params }) {
3131 const { locale } = await params ;
3232 const { posts } = await getPosts ( locale ) ;
3333
34- const t = await getTranslations ( "Blogs " ) ;
34+ const t = await getTranslations ( "Blog " ) ;
3535
3636 return (
3737 < div className = "container mx-auto px-4 py-8" >
You can’t perform that action at this time.
0 commit comments