-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
90 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// lib/seo.ts | ||
|
||
import { SeoMetadata } from "@/types/seo"; // Import types | ||
|
||
export const seoMetadata: SeoMetadata = { | ||
title: "Radio Chilmari - Community Radio Station in Chilmari, Bangladesh", | ||
description: "Radio Chilmari is a community radio station providing educational content, including women's rights and local news, broadcasting in the Rangpur-Dinajpur region of Bangladesh.", | ||
keywords: "Radio Chilmari, community radio, women's rights, Bangla radio, 99.20 FM, Chilmari, Kurigram, FM radio Bangladesh, RDRS Bangladesh, Kurigram, Bangladesh, Kurigram district, Rangpur, Dinajpur", | ||
author: "Radio Chilmari", | ||
creator: "RDRS Bangladesh", | ||
robots: "index, follow", | ||
viewport: "width=device-width, initial-scale=1.0", | ||
openGraph: { | ||
title: "Radio Chilmari - Empowering Communities Through Radio", | ||
description: "Radio Chilmari broadcasts local and cultural content focused on empowering women and promoting community development in Bangladesh.", | ||
type: "website", | ||
url: "https://www.radiochilmari.com", | ||
image: "/public/images/og-image.jpg", // Ensure path is correct | ||
site_name: "Radio Chilmari", | ||
}, | ||
twitter: { | ||
card: "summary_large_image", | ||
site: "@RadioChilmari", | ||
title: "Radio Chilmari - Community Radio for Social Change", | ||
description: "Listen to Radio Chilmari for insightful content on women's rights and local news from Bangladesh's rural regions.", | ||
image: "/public/images/twitter-card-image.jpg", // Update path accordingly | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// types/seo.d.ts | ||
|
||
export interface OpenGraphMetadata { | ||
title: string; | ||
description: string; | ||
type: string; | ||
url: string; | ||
image: string; | ||
site_name: string; | ||
} | ||
|
||
export interface TwitterMetadata { | ||
card: string; | ||
site: string; | ||
title: string; | ||
description: string; | ||
image: string; | ||
} | ||
|
||
export interface SeoMetadata { | ||
title: string; | ||
description: string; | ||
keywords: string; | ||
author: string; | ||
creator: string; | ||
robots: string; | ||
viewport: string; | ||
openGraph: OpenGraphMetadata; | ||
twitter: TwitterMetadata; | ||
} | ||
|