-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Custom: Adding pdf links in courses"
- Loading branch information
1 parent
6a3be4b
commit 848f1fa
Showing
5 changed files
with
205 additions
and
285 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
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
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,51 +1,28 @@ | ||
|
||
import React from "react"; | ||
import home from "../assets/home.png"; | ||
import React from 'react' | ||
import home from "../assets/home.png" | ||
function Introduction() { | ||
return ( | ||
<> | ||
{" "} | ||
<div className="home"> | ||
<div | ||
className="home-text" | ||
id="introduction"> | ||
<div className="left-text"> | ||
<div className="top-text"> | ||
<button className="top-button">Code Your Way to Success</button> | ||
</div> | ||
<div className="mid-text"> | ||
<p> | ||
Welcome to Code Book, your ultimate coding destination. Whether | ||
you're a coding novice or a seasoned developer, we've got you | ||
covered. Master in-demand languages like Python, JavaScript, and | ||
Java while building real-world projects. Join our vibrant | ||
community of learners to collaborate and grow together. Start | ||
your coding journey today and unlock endless possibilities. | ||
</p> | ||
</div> | ||
<div className="explore"> | ||
<button className="explore-btn"> | ||
<a href="/signup"> | ||
Get Started (It's free) | ||
<i className="fa-solid fa-laptop-file"></i> | ||
</a> | ||
</button> | ||
</div> | ||
</div> | ||
<div className="right-image"> | ||
<img | ||
src={home} | ||
alt="" | ||
className="home-image" | ||
/> | ||
</div> | ||
</div> | ||
<div | ||
className="courses" | ||
id="courses"></div> | ||
</div> | ||
</> | ||
); | ||
return ( | ||
<> <div className='home'> | ||
<div className="home-text" id="introduction"> | ||
<div className="left-text"> | ||
<div className="top-text"> | ||
<button className="top-button">Code Your Way to Success</button> | ||
</div> | ||
<div className="mid-text"> | ||
<p>Welcome to Code Book, your ultimate coding destination. Whether you're a coding novice or a seasoned developer, we've got you covered. Master in-demand languages like Python, JavaScript, and Java while building real-world projects. Join our vibrant community of learners to collaborate and grow together. Start your coding journey today and unlock endless possibilities.</p> | ||
</div> | ||
<div className="explore"> | ||
<button className="explore-btn"><a href= "/signup">Get Started (It's free)<i className="fa-solid fa-laptop-file"></i></a></button> | ||
</div> | ||
</div> | ||
<div className="right-image"> | ||
<img src={home} alt="" className="home-image"/> | ||
</div> | ||
</div> | ||
<div className="courses" id="courses"></div> | ||
</div> | ||
</> | ||
) | ||
} | ||
|
||
export default Introduction; | ||
export default Introduction |
Oops, something went wrong.