-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from sddevx/sam/updates
Sam/updates
- Loading branch information
Showing
11 changed files
with
210 additions
and
208 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,3 +1,6 @@ | ||
{ | ||
"extends": ["next/core-web-vitals", "plugin:prettier/recommended"] | ||
"extends": ["next/core-web-vitals", "plugin:prettier/recommended"], | ||
"rules": { | ||
"@next/next/no-img-element": "off" | ||
} | ||
} |
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
import React from "react" | ||
|
||
export const PotionBackground = () => { | ||
return ( | ||
<div | ||
style={{ | ||
backgroundColor: "black", | ||
width: "100%", | ||
height: "100%", | ||
overflow: "hidden", | ||
position: "fixed", | ||
top: 0, | ||
left: 0 | ||
}} | ||
> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 100 100" | ||
preserveAspectRatio="none" | ||
style={{ width: "100%", height: "100%" }} | ||
> | ||
<defs> | ||
<filter id="blur" x="-50%" y="-50%" width="200%" height="200%"> | ||
<feGaussianBlur in="SourceGraphic" stdDeviation="6" /> | ||
</filter> | ||
<radialGradient id="gradient1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%"> | ||
<stop offset="0%" stopColor="#E2ABFF71" /> | ||
<stop offset="99%" stopColor="#3AF79B96" /> | ||
<stop offset="100%" stopColor="#3AF79B00" /> | ||
</radialGradient> | ||
<radialGradient id="gradient2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%"> | ||
<stop offset="0%" stopColor="#3B69FF4F" /> | ||
<stop offset="72%" stopColor="#3A66F770" /> | ||
<stop offset="100%" stopColor="#3A66F700" /> | ||
</radialGradient> | ||
<radialGradient id="gradient3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%"> | ||
<stop offset="0%" stopColor="#FF3BEB" /> | ||
<stop offset="72%" stopColor="#3A9EF7A8" /> | ||
<stop offset="100%" stopColor="#3A9EF700" /> | ||
</radialGradient> | ||
</defs> | ||
<g filter="url(#blur)" opacity={"60%"}> | ||
<circle cx="0" cy="0" r="70" fill="url(#gradient1)"> | ||
<animateMotion | ||
path="M 90,10 m -15,0 a 15,15 0 1,1 30,0 a 15,15 0 1,1 -30,0" | ||
dur="16s" | ||
repeatCount="indefinite" | ||
/> | ||
</circle> | ||
<circle cx="0" cy="0" r="70" fill="url(#gradient2)"> | ||
<animateMotion | ||
path="M 50,50 m -15,0 a 15,15 0 1,1 30,0 a 15,15 0 1,1 -30,0" | ||
dur="24s" | ||
repeatCount="indefinite" | ||
/> | ||
</circle> | ||
<circle cx="0" cy="0" r="70" fill="url(#gradient3)"> | ||
<animateMotion | ||
path="M 10,90 m -15,0 a 15,15 0 1,1 30,0 a 15,15 0 1,1 -30,0" | ||
dur="32s" | ||
repeatCount="indefinite" | ||
/> | ||
</circle> | ||
</g> | ||
</svg> | ||
</div> | ||
) | ||
} |
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 |
---|---|---|
@@ -0,0 +1,68 @@ | ||
export default function Join() { | ||
return ( | ||
<main> | ||
<section className="bg-gray-800 p-8 rounded-lg shadow-md mb-12"> | ||
<h2 className="text-3xl font-bold mb-4 text-center">Current Events</h2> | ||
<div className="w-full flex flex-col items-center"> | ||
<p className="mt-2 text-xl text-center max-w-screen-lg mb-12"> | ||
Stay updated with our latest events, workshops, and meetups. Join us to network and | ||
learn with fellow developers. | ||
</p> | ||
<div className="flex justify-center gap-6 w-full"> | ||
<div | ||
className="flex flex-col items-center flex-1 " | ||
style={{ flexBasis: "50%", height: "600px", overflow: "hidden" }} | ||
> | ||
<h2 className="text-3xl font-bold mb-4 text-center ">On Lu.ma</h2> | ||
<iframe | ||
src="https://lu.ma/embed/event/evt-UDB2YUh2bKH152P/simple" | ||
width="100%" | ||
height="100%" | ||
allowFullScreen | ||
aria-hidden="false" | ||
></iframe> | ||
</div> | ||
<div | ||
className="flex flex-col items-center flex-1" | ||
style={{ flexBasis: "50%", height: "600px", overflow: "hidden" }} | ||
> | ||
<h2 className="text-3xl font-bold mb-4 text-center">On Meetup.com</h2> | ||
<a href="https://www.meetup.com/san-diego-devx/events/301885439/?utm_medium=referral&utm_campaign=share-btn_savedevents_share_modal&utm_source=link"> | ||
<img | ||
src="https://secure.meetupstatic.com/photos/event/5/0/b/c/600_519680668.webp?w=384" | ||
alt="Meetup Event" | ||
style={{ | ||
width: "100%", | ||
height: "600px", | ||
objectFit: "cover" | ||
}} | ||
/> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
<h2 className="mt-12 text-3xl font-bold mb-4 text-center">Join Our Discord</h2> | ||
<div className="w-full flex flex-col items-center"> | ||
<div className="flex justify-center"> | ||
<a | ||
href="https://discord.gg/rmbT75CB" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="btn btn-primary" | ||
style={{ | ||
backgroundColor: "#5865F2", | ||
color: "white", | ||
padding: "15px 20px", | ||
borderRadius: "1px", | ||
textDecoration: "none", | ||
display: "inline-block" | ||
}} | ||
> | ||
DEVx Discord | ||
</a> | ||
</div> | ||
</div> | ||
</section> | ||
</main> | ||
) | ||
} |
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.