diff --git a/src/components/Head/index.tsx b/src/components/Head/index.tsx index 6e285268..3e5c3cce 100644 --- a/src/components/Head/index.tsx +++ b/src/components/Head/index.tsx @@ -4,17 +4,17 @@ export default function HeadComponent({ data }: { data?: any }) { const { locale } = useRouter() const title = data?.title const description = data?.description - const punkgaImage = data?.image || 'https://punkga.me/assets/images/thumb.png' const punkgaTitle = title - ? title + ? `${title} | Punkga.Me` : locale == 'vn' - ? 'Đa Vũ Trụ Truyện Tranh Online Cho Mọi Người | Punkga.me' - : 'Punkga.me | The Manga Multiverse For All' + ? 'Đa Vũ Trụ Truyện Tranh Online Cho Mọi Người | Punkga.Me' + : 'Punkga.Me | The Manga Multiverse For All' const punkgaDescription = description ? description : locale == 'vn' - ? 'Đọc truyện tranh online tiếng việt cập nhật chapter mới mỗi tuần tại Punkga.me. Đa dạng thể loại: Hành động, Tragedy, Slice of life, Ecchi, Sci-fi, Adventure,...' + ? 'Đọc truyện tranh online tiếng việt cập nhật chapter mới mỗi tuần tại Punkga.Me. Đa dạng thể loại: Hành động, Tragedy, Slice of life, Ecchi, Sci-fi, Adventure,...' : 'Read Manga online free, fast updated, officially licensed with high-quality translated chapters. Start reading now!' + const punkgaImage = data?.image || 'https://punkga.me/assets/images/thumb.png' return (