Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated all the links #30

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,38 @@ body {
--offset: 180px;
}

.problems p a {
display: inline-block;
position: relative;
text-decoration: none;
color: inherit;
margin: 0 var(--spacing, 0px);
transition: margin 0.25s;
}

.problems p a svg {
width: 76px;
height: 40px;
position: absolute;
left: 50%;
bottom: 0;
transform: translate(-50%, 7px) translateZ(0);
fill: none;
stroke: var(--stroke, #bbc1e1);
stroke-linecap: round;
stroke-width: 2px;
stroke-dasharray: var(--offset, 69px) 278px;
stroke-dashoffset: 361px;
transition: stroke 0.25s ease var(--stroke-delay, 0s), stroke-dasharray 0.35s;
}

.problems p a svg:hover {
--spacing: 4px;
--stroke: #7d41e7;
--stroke-delay: 0.1s;
--offset: 180px;
}

.moon,
.cube,
.star-1,
Expand Down
16 changes: 9 additions & 7 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,35 +15,37 @@ function App() {
<h1 className="title">#50DaysOfJavaScript</h1>
<p className="description">
A community-driven open-source initiative for elevating JavaScript
skills through daily, practical coding challenges tailored to
real-world tasks, led by a supportive global community of developers.
skills through daily, practical
<span className='problems'>
<a href="https://github.com/vinitshahdeo/JavaScript-Coding-Interview-Questions/blob/main/README.md#list-of-questions" target="_blank" rel="noreferrer">coding challenges</a>
</span> tailored to real-world tasks, led by a supportive global community of developers.
</p>
<a
href="https://forms.gle/83ZKpF4S5VEqNG6P8"
href="https://github.com/vinitshahdeo/JavaScript-Coding-Interview-Questions/blob/main/50DaysOfJavaScript/README.md"
target="_blank"
rel="noreferrer"
className="join-button"
>
Join Now
Learn More
</a>
<Timer deadline="February 14, 2024" />
<div className="buttons">
<a
href="https://forms.gle/83ZKpF4S5VEqNG6P8"
href="https://github.com/vinitshahdeo/JavaScript-Coding-Interview-Questions/blob/main/50DaysOfJavaScript/README.md#-how-can-you-join-the-challenge"
target="_blank"
rel="noreferrer"
>
<button className="btn">Join as a Participant</button>
</a>
<a
href="https://forms.gle/oQAFMDofBtjeawhp8"
href="https://github.com/vinitshahdeo/JavaScript-Coding-Interview-Questions/blob/main/50DaysOfJavaScript/docs/COMMUNITY.md"
target="_blank"
rel="noreferrer"
>
<button className="btn">Become a Community Partner</button>
</a>
<a
href="https://forms.gle/zGHWps1t7heYbcrP7"
href="https://github.com/vinitshahdeo/JavaScript-Coding-Interview-Questions/blob/main/50DaysOfJavaScript/docs/MENTOR.md"
target="_blank"
rel="noreferrer"
>
Expand Down