diff --git a/src/app/(main)/blog/[slug]/page.tsx b/src/app/(main)/blog/[slug]/page.tsx index f4239d9..204a1f0 100644 --- a/src/app/(main)/blog/[slug]/page.tsx +++ b/src/app/(main)/blog/[slug]/page.tsx @@ -7,9 +7,6 @@ import { headers } from "next/headers"; import Image from "next/image"; import { notFound } from "next/navigation"; -const metaDesc = - "Explore the latest insights, news, and resources on the Dynamic Realty blog. Read our articles today."; - export async function generateMetadata(props: { params: Promise<{ slug: string }> }): Promise { const metadata = await getDefaultMetadata(); const params = await props.params;