-
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
5 changed files
with
59 additions
and
14 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 |
---|---|---|
@@ -1 +1,24 @@ | ||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} | ||
{ | ||
"name": "Radio Chilmari", | ||
"short_name": "Radio Chilmari", | ||
"description": "Radio Chilmari - A Community Radio Station in Kurigram, Bangladesh", | ||
"icons": [ | ||
{ | ||
"src": "/android-chrome-192x192.png", | ||
"sizes": "192x192", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/android-chrome-512x512.png", | ||
"sizes": "512x512", | ||
"type": "image/png" | ||
} | ||
], | ||
"theme_color": "#0084ff", | ||
"background_color": "#ffffff", | ||
"display": "standalone", | ||
"start_url": "/", | ||
"scope": "/", | ||
"orientation": "portrait" | ||
} | ||
|
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 |
---|---|---|
@@ -1,16 +1,36 @@ | ||
import HoursCard from '@/components/ui/HoursCard' | ||
import RdrsProgram from '@/components/ui/RdrsProgram' | ||
import React from 'react' | ||
import HoursCard from '@/components/ui/HoursCard'; | ||
import RdrsProgram from '@/components/ui/RdrsProgram'; | ||
import Link from 'next/link'; | ||
import React from 'react'; | ||
import { FaFacebook } from 'react-icons/fa'; | ||
|
||
const page = () => { | ||
const OuerShow = () => { | ||
return ( | ||
<div className='bg-gray-100 dark:bg-gray-900'> | ||
<main className=''> | ||
<div className="mt-20"> | ||
{/* Header Section */} | ||
<div className="text-center mt-30 py-10"> | ||
<span className=" text-sm sm:text-lg md:text-xl lg:text-xl text-blue-600 dark:text-gray-100 font-extrabold"> | ||
আমাদের অফিসিয়াল ফেসবুক পেজে চোখ রাখুন, প্রতিদিনের অনুষ্ঠান সূচী দেখতে ক্লিক করুন: | ||
</span> | ||
<span> | ||
<Link | ||
href="https://www.facebook.com/radiochilmari" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<FaFacebook className="inline-block text-3xl ml-5 text-blue-600 dark:text-gray-100" /> | ||
</Link> | ||
</span> | ||
|
||
</div> | ||
|
||
{/* Main Content Section */} | ||
<main> | ||
<HoursCard /> | ||
<RdrsProgram /> | ||
</main> | ||
</div> | ||
) | ||
} | ||
); | ||
}; | ||
|
||
export default page | ||
export default OuerShow; |
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
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