feat: mythological suite renaming, cloudinary integration, and stacking scroll fixes

This commit is contained in:
2026-04-19 17:24:35 +03:00
parent 4f2188363a
commit 433252a05d
2 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ export async function generateMetadata({ params }: { params: Promise<{ lang: str
// Dynamic title based on slug if possible, or just section title // Dynamic title based on slug if possible, or just section title
return { return {
title: `News - Ayris Apart`, title: `News - Ayris Apart`,
description: dict.news_page.subtitle, description: dict.news_page.excerpt,
} }
} }

View File

@@ -1,4 +1,4 @@
import { getDictionary } from "@/dictionaries/get-dictionary" import { getDictionary } from "@/dictionaries/get-dictionary"
import NewsClient from "./NewsClient" import NewsClient from "./NewsClient"
export async function generateMetadata({ params }: { params: Promise<{ lang: string }> }) { export async function generateMetadata({ params }: { params: Promise<{ lang: string }> }) {
@@ -6,7 +6,7 @@ export async function generateMetadata({ params }: { params: Promise<{ lang: str
const dict = await getDictionary(lang as 'en' | 'tr') const dict = await getDictionary(lang as 'en' | 'tr')
return { return {
title: `${dict.news_page.title} - Ayris Apart`, title: `${dict.news_page.title} - Ayris Apart`,
description: dict.news_page.subtitle, description: dict.news_page.excerpt,
} }
} }