Skip to content

Commit

Permalink
Merge pull request #189 from saniyafatima07/prod
Browse files Browse the repository at this point in the history
feat:Add youtube mixtape card-component
  • Loading branch information
SkySingh04 authored Jan 20, 2025
2 parents 5d6cbf9 + 137c5c8 commit bc65ea5
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 76 deletions.
51 changes: 40 additions & 11 deletions components/share.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Image from 'next/image'; // Assuming you are using next/image for optimization
import Image from "next/image"; // Assuming you are using next/image for optimization

export default function Share() {
return (
Expand All @@ -11,7 +11,7 @@ export default function Share() {
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="grid grid-cols-1 md:grid-cols-3 gap-6">
{/* Card 1 */}
<div className="bg-gradient-to-tr from-blue-600 to-blue-300 p-6 rounded-lg shadow-md text-white rounded-xl">
<div className="bg-gradient-to-tr from-blue-600 to-blue-300 p-6 shadow-md text-white rounded-xl">
<div className="flex justify-start mb-4">
{/* Replace the src with the actual Slack logo you use */}
<Image
Expand All @@ -23,15 +23,19 @@ export default function Share() {
</div>
<h3 className="text-lg font-bold mb-2">Follow us on Linkedin</h3>
<p>
We post about upcoming events, activities, and other cool stuff on Instagram.
We post about upcoming events, activities, and other cool stuff on
Instagram.
</p>
<a className="btn-sm px-4 py-2 text-l font-bold bg-gradient-to-tr from-blue-600 to-blue-800 mx-3 rounded-xl mt-10" href="https://www.linkedin.com/company/point-blank-d">
<a
className="btn-sm px-4 py-2 text-l font-bold bg-gradient-to-tr from-blue-600 to-blue-800 mx-3 rounded-xl mt-10"
href="https://www.linkedin.com/company/point-blank-d"
>
Follow Us
</a>
</div>

{/* Card 2 */}
<div className="bg-gradient-to-tr from-purple-400 to-pink-500 p-6 rounded-lg shadow-md text-white rounded-xl">
<div className="bg-gradient-to-tr from-purple-400 to-pink-500 p-6 shadow-md text-white rounded-xl">
<div className="flex justify-start mb-4">
{/* Replace with GitHub logo */}
<Image
Expand All @@ -43,28 +47,53 @@ export default function Share() {
</div>
<h3 className="text-lg font-bold mb-2">Follow Us On Instagram</h3>
<p>
We post about upcoming events, activities, and other cool stuff on Instagram.
We post about upcoming events, activities, and other cool stuff on
Instagram.
</p>
<a className="btn-sm px-4 py-2 text-l font-bold text-white bg-gradient-to-tr from-purple-400 to-pink-500 mx-3 rounded-xl mt-10" href="https://www.instagram.com/pointblank_dsce/">
<a
className="btn-sm px-4 py-2 text-l font-bold text-white bg-gradient-to-tr from-purple-400 to-pink-500 mx-3 rounded-xl mt-10"
href="https://www.instagram.com/pointblank_dsce/"
>
Follow Us
</a>
</div>

{/* Card 3 */}
<div className="bg-gradient-to-tr from-green-500 to-green-300 p-6 rounded-lg shadow-md text-white rounded-xl">
<div className="bg-gradient-to-tr from-green-500 to-green-300 p-6 shadow-md text-white rounded-xl">
<div className="flex justify-start mb-4">
<p className="text-2xl font-bold">📄 Brochure </p>
</div>
<h3 className="text-lg font-bold mb-2">Download our Brochure</h3>
<p>
We have listed all of recent events, activities, and other stats in our brochure.
We have listed all of recent events, activities, and other stats
in our brochure.
</p>
<a className="btn-sm px-4 py-2 text-l font-bold bg-gradient-to-tr from-green-500 to-green-300 mx-3 rounded-xl mt-10" href="/brochure.pdf">
<a
className="btn-sm px-4 py-2 text-l font-bold bg-gradient-to-tr from-green-500 to-green-300 mx-3 rounded-xl mt-10"
href="/brochure.pdf"
>
Download Now
</a>
</div>

{/* Card 4 */}
<div className="bg-gradient-to-tr from-purple-500 to-purple-300 p-6 shadow-md text-white rounded-xl md:col-span-1 md:col-start-2">
<div className="flex justify-start mb-4">
<p className="text-2xl font-bold mb-2"> Youtube </p>
</div>
<h3 className="text-lg font-bold mb-2">Jam to Our Latest Mixtape!</h3>
<p>
We include all the tracks, vibes, and energy of our mixtapes - Check it out now!.
</p>
<a
className="btn-sm px-4 py-2 text-l font-bold bg-gradient-to-tr from-purple-500 to-purple-300 mx-3 rounded-xl mt-10"
href="https://www.youtube.com/watch?v=2vk-hb0quBg&list=PLrHlqWSNnbvTMbGsDrM3Uu_p2o-x4BfSn"
>
Tune In
</a>
</div>
</div>
</div>
</section>
);
}
}
117 changes: 52 additions & 65 deletions package-lock.json

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

0 comments on commit bc65ea5

Please sign in to comment.