Icons instead of buttons, small copy change

This commit is contained in:
austinkelsay 2024-10-03 14:13:34 -05:00
parent 31c7daac99
commit 9021648cef

View File

@ -12,7 +12,7 @@ const promotions = [
{ {
id: 1, id: 1,
category: "PLEBDEVS", category: "PLEBDEVS",
title: "Developer education & community platform", title: "Developer education / community platform",
description: "PlebDevs is your gateway to mastering Bitcoin, Lightning, and Nostr technologies. Join our community of aspiring developers and start your journey today!", description: "PlebDevs is your gateway to mastering Bitcoin, Lightning, and Nostr technologies. Join our community of aspiring developers and start your journey today!",
icon: "pi pi-code", icon: "pi pi-code",
video: "/videos/plebdevs-montage.mp4", video: "/videos/plebdevs-montage.mp4",
@ -28,7 +28,7 @@ const promotions = [
{ {
id: 3, id: 3,
category: "COMMUNITY", category: "COMMUNITY",
title: "Join Our Community of learners, hackers, and plebs", title: "Join Our Community of learners / hackers",
description: "Connect with other developers, share your projects, and get support from our community of Bitcoin enthusiasts.", description: "Connect with other developers, share your projects, and get support from our community of Bitcoin enthusiasts.",
icon: "pi pi-users", icon: "pi pi-users",
image: "https://pikwizard.com/pw/medium/50238b1cad4ff412fdafc1325efa1c9f.jpg", image: "https://pikwizard.com/pw/medium/50238b1cad4ff412fdafc1325efa1c9f.jpg",
@ -219,39 +219,29 @@ const InteractivePromotionalCarousel = () => {
<p>Welcome! 👋</p> <p>Welcome! 👋</p>
<p>Plebdevs is open source software and is still in early development. If you have any questions drop an issue on the Github repo, or reach out to me in the Community tab, cheers! - <span className="italic">Austin</span></p> <p>Plebdevs is open source software and is still in early development. If you have any questions drop an issue on the Github repo, or reach out to me in the Community tab, cheers! - <span className="italic">Austin</span></p>
<div className="flex flex-wrap gap-4 justify-center mt-2"> <div className="flex flex-wrap gap-4 justify-center mt-2">
<GenericButton <i
severity="secondary" className="pi pi-github text-gray-300 cursor-pointer text-xl hover:opacity-80"
outlined
size="small"
icon="pi pi-github"
tooltip="Github"
className="text-gray-300"
onClick={() => window.open('https://github.com/pleb-devs', '_blank')} onClick={() => window.open('https://github.com/pleb-devs', '_blank')}
title="Github"
/> />
<GenericButton <i
severity="info" className="pi pi-twitter text-blue-400 rounded-full cursor-pointer text-xl hover:opacity-80"
outlined
size="small"
icon="pi pi-twitter"
tooltip="X"
onClick={() => window.open('https://x.com/pleb_devs', '_blank')} onClick={() => window.open('https://x.com/pleb_devs', '_blank')}
title="X"
/> />
<GenericButton <Image
severity="help" src={NostrIcon}
outlined alt="Nostr"
size="small" width={22}
icon={<Image src={NostrIcon} alt="Nostr" width={100} height={100} className="mr-0" />} height={22}
tooltip="Nostr" className="cursor-pointer hover:opacity-80"
onClick={() => window.open('https://nostr.com/plebdevs@plebdevs.com', '_blank')} onClick={() => window.open('https://nostr.com/plebdevs@plebdevs.com', '_blank')}
title="Nostr"
/> />
<GenericButton <i
severity="warning" className="pi pi-bolt text-yellow-400 cursor-pointer text-xl hover:opacity-80"
className="text-yellow-400"
outlined
size="small"
icon="pi pi-bolt"
tooltip="Donate"
onClick={() => copyToClipboard("austin@bitcoinpleb.dev")} onClick={() => copyToClipboard("austin@bitcoinpleb.dev")}
title="Donate"
/> />
</div> </div>
</div> </div>