Skip to content

Commit

Permalink
OuerShow is formate
Browse files Browse the repository at this point in the history
  • Loading branch information
zobkazi committed Nov 23, 2024
1 parent 4c0705c commit 59ac350
Show file tree
Hide file tree
Showing 5 changed files with 152 additions and 443 deletions.
110 changes: 2 additions & 108 deletions src/app/(home)/contact-us/page.tsx
Original file line number Diff line number Diff line change
@@ -1,108 +1,2 @@
"use client";
import Link from "next/link";
import { motion } from "framer-motion";
import { FaEnvelope, FaPhoneAlt, FaFacebook } from "react-icons/fa"; // Import icons from react-icons

const ContactUs: React.FC = () => {
return (
<div>
<section className="bg-gray-100">
<div className="max-w-7xl mx-auto py-16 px-4 sm:px-6 lg:py-20 lg:px-8">
<div className="max-w-2xl lg:max-w-4xl mx-auto text-center">
<motion.h2
className="text-3xl font-extrabold text-gray-900"
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ duration: 1 }}
>
আমাদের অবস্থান দেখুন
</motion.h2>
<motion.p
className="mt-4 text-lg text-gray-500"
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ duration: 1, delay: 0.2 }}
>
আমাদের অফিসিয়াল ঠিকানা এবং যোগাযোগ তথ্য
</motion.p>
</div>
<div className="mt-16 lg:mt-20">
<div className="grid grid-cols-1 md:grid-cols-2 gap-8">
{/* Google Maps Section */}
<div className="rounded-lg overflow-hidden">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3599.048994877744!2d89.66772597539406!3d25.570036677472864!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39fd359ed6328a4d%3A0x3d533e7b562e806e!2sRadio%20Chilmari%2099.2%20FM!5e0!3m2!1sen!2sbd!4v1732169168452!5m2!1sen!2sbd"
width="600"
height="450"
style={{ border: 0 }}
loading="lazy"
></iframe>
</div>

{/* Address and Contact Details Section */}
<div>
<div className="max-w-full mx-auto rounded-lg overflow-hidden">
{/* Address */}
<motion.div
className="px-6 py-4"
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ duration: 1, delay: 0.4 }}
>
<h3 className="text-lg font-medium text-gray-900">
ঠিকানা:
</h3>
<p className="mt-1 text-gray-600">
রামনা মিস্ত্রী পাড়া, চিলমারী, বাংলাদেশ, ৫৬৩০
</p>
<p className="mt-1 text-gray-600">চিলমারী, কুড়িগ্রাম</p>
</motion.div>

{/* Contact Information */}
<motion.div
className="border-t border-gray-200 px-6 py-4"
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ duration: 1, delay: 0.6 }}
>
<h3 className="text-lg font-medium text-gray-900">
Contact
</h3>
<div className="flex items-center mt-1 text-gray-600">
<FaEnvelope className="mr-2 text-blue-600" />
<p>
ইমেল:{" "}
<a
href="mailto:[email protected]"
className="text-blue-600 hover:underline"
>
[email protected]
</a>
</p>
</div>
<div className="flex items-center mt-1 text-gray-600">
<FaPhoneAlt className="mr-2 text-green-600" />
<p>ফোন: +৮৮০১৭১৯৪৬৪৯৮১, ০১৯৬৯-৯০৬০০৮</p>
</div>
<div className="flex items-center mt-1">
<FaFacebook className="mr-2 text-blue-600" />
<Link
href="https://www.facebook.com/radiochilmari"
target="_blank"
className="text-blue-600 hover:underline"
>
ফেসবুক পেজ
</Link>
</div>
</motion.div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
);
};

export default ContactUs;
import ContactUs from "@/components/pages/contact/ContactUs";
export default ContactUs;
37 changes: 2 additions & 35 deletions src/app/(home)/our-show/page.tsx
Original file line number Diff line number Diff line change
@@ -1,36 +1,3 @@
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';
import OuerShow from "@/components/pages/show/OuerShow";

const OuerShow = () => {
return (
<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 OuerShow;
export default OuerShow;
Loading

0 comments on commit 59ac350

Please sign in to comment.