🧑💻 create dedicated metadata for homepage
separating metadata from the main root home file to make it easier to develop
This commit is contained in:
39
app/(home)/metadata.tsx
Normal file
39
app/(home)/metadata.tsx
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
import { Metadata } from "next";
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: "Nounoz TV - Anime Streaming Station Center",
|
||||||
|
description:
|
||||||
|
"Nounoz TV adalah tempat santai buat nonton anime kualitas tinggi tanpa ribet. Didukung komunitas yang aktif dan ramah, kamu nggak cuma nonton—tapi juga bisa ngobrol, sharing, dan seru-seruan bareng.",
|
||||||
|
keywords: [
|
||||||
|
"nonton anime",
|
||||||
|
"streaming anime",
|
||||||
|
"anime sub indo",
|
||||||
|
"anime HD",
|
||||||
|
"komunitas anime",
|
||||||
|
"Nounoz TV",
|
||||||
|
],
|
||||||
|
openGraph: {
|
||||||
|
title: "Nounoz TV - Streaming Anime HD + Komunitas Asik",
|
||||||
|
description:
|
||||||
|
"Nonton anime jadi lebih seru bareng teman-teman. Kualitas jernih, tanpa iklan ganggu, dan selalu update!",
|
||||||
|
url: "https://nounoz.tv",
|
||||||
|
siteName: "Nounoz TV",
|
||||||
|
images: [
|
||||||
|
{
|
||||||
|
url: "https://nounoz.tv/og-image.jpg",
|
||||||
|
width: 1200,
|
||||||
|
height: 630,
|
||||||
|
alt: "Nounoz TV - Nonton Anime HD Bareng Komunitas",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
locale: "id_ID",
|
||||||
|
type: "website",
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
card: "summary_large_image",
|
||||||
|
title: "Nounoz TV - Nonton Anime HD Bareng Komunitas",
|
||||||
|
description:
|
||||||
|
"Streaming anime kualitas tinggi sambil ngobrol santai bareng komunitas yang aktif dan suportif.",
|
||||||
|
images: ["https://nounoz.tv/og-image.jpg"],
|
||||||
|
},
|
||||||
|
};
|
||||||
@ -1,3 +1,6 @@
|
|||||||
|
import { metadata } from "./metadata";
|
||||||
|
export { metadata };
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
const page = () => {
|
const page = () => {
|
||||||
Reference in New Issue
Block a user