classify web
This commit is contained in:
45
app/subscription/page.jsx
Normal file
45
app/subscription/page.jsx
Normal file
@@ -0,0 +1,45 @@
|
||||
import Subscription from "@/components/PagesComponent/Subscription/Subscription";
|
||||
import { SEO_REVALIDATE_SECONDS } from "@/lib/constants";
|
||||
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
export const generateMetadata = async ({ searchParams }) => {
|
||||
try {
|
||||
if (process.env.NEXT_PUBLIC_SEO === "false") return;
|
||||
const params = await searchParams;
|
||||
const langCode = params?.lang || "en";
|
||||
const response = await fetch(
|
||||
`${process.env.NEXT_PUBLIC_API_URL}${process.env.NEXT_PUBLIC_END_POINT}seo-settings?page=subscription`,
|
||||
{
|
||||
headers: {
|
||||
"Content-Language": langCode || "en",
|
||||
},
|
||||
next: {
|
||||
revalidate: SEO_REVALIDATE_SECONDS,
|
||||
},
|
||||
}
|
||||
);
|
||||
const data = await response.json();
|
||||
const subscription = data?.data?.[0];
|
||||
return {
|
||||
title: subscription?.translated_title || process.env.NEXT_PUBLIC_META_TITLE,
|
||||
description:
|
||||
subscription?.translated_description ||
|
||||
process.env.NEXT_PUBLIC_META_DESCRIPTION,
|
||||
openGraph: {
|
||||
images: subscription?.image ? [subscription?.image] : [],
|
||||
},
|
||||
keywords:
|
||||
subscription?.translated_keywords || process.env.NEXT_PUBLIC_META_kEYWORDS,
|
||||
};
|
||||
} catch (error) {
|
||||
console.error("Error fetching MetaData:", error);
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
const SubscriptionPage = () => {
|
||||
return <Subscription />;
|
||||
};
|
||||
|
||||
export default SubscriptionPage;
|
||||
Reference in New Issue
Block a user