Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
zobkazi committed Nov 21, 2024
1 parent 19cc68d commit ea8e4d2
Show file tree
Hide file tree
Showing 31 changed files with 889 additions and 97 deletions.
79 changes: 79 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,19 @@
"dependencies": {
"flowbite-react": "^0.10.2",
"framer-motion": "^11.11.17",
"moment": "^2.30.1",
"next": "14.2.18",
"react": "^18",
"react-dom": "^18",
"react-slick": "^0.30.2",
"slick-carousel": "^1.8.1",
"swiper": "^11.1.15"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-slick": "^0.23.13",
"eslint": "^8",
"eslint-config-next": "14.2.18",
"postcss": "^8",
Expand Down
13 changes: 2 additions & 11 deletions src/app/(home)/about-us/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,2 @@
import React from 'react'

const AboutUS = () => {
return (
<div className='text-3xl'>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nihil est fuga distinctio repellat veniam laborum molestias blanditiis neque, similique tempora recusandae, eligendi incidunt reiciendis nulla optio dolore ratione fugiat! Minima!
</div>
)
}

export default AboutUS
import AboutUs from "@/components/pages/about/AboutUs";
export default AboutUs;
91 changes: 85 additions & 6 deletions src/app/(home)/contact-us/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,88 @@
import React from 'react'
'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 page = () => {
const ContactUs: React.FC = () => {
return (
<div>page</div>
)
}
<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>

export default page
{/* 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;
9 changes: 8 additions & 1 deletion src/app/(home)/our-show/page.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
import HoursCard from '@/components/ui/HoursCard'
import RdrsProgram from '@/components/ui/RdrsProgram'
import React from 'react'

const page = () => {
return (
<div>page</div>
<div className='bg-gray-100 dark:bg-gray-900'>
<main className=''>
<HoursCard />
<RdrsProgram />
</main>
</div>
)
}

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/icons/images.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/icons/readio_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit ea8e4d2

Please sign in to comment.