-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
213 additions
and
86 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,28 @@ | ||
import React from "react" | ||
import React from "react"; | ||
|
||
export default function Contacts(){ | ||
return ( | ||
<div> | ||
<h1>Contacts</h1> | ||
export default function Contacts() { | ||
return ( | ||
<div className="contact-container"> | ||
<div className="contact-greeting"> | ||
<h1 className="contact-header">Contact</h1> | ||
<p className="contact-message"> | ||
I would love to hear about your project and how I <br/>could help. Please | ||
fill in the form, and I’ll get back<br/> to you as soon as possible. | ||
</p> | ||
</div> | ||
<div className="form-container"> | ||
<form action=""> | ||
<label htmlFor = "name">NAME</label> | ||
<input type="text" id = "name" name = "name"/> | ||
|
||
<label htmlFor = "email">EMAIL</label> | ||
<input type="text" id = "name" name = "email"/> | ||
|
||
<label htmlFor= "message">MESSAGE</label> | ||
<textarea id="message" name="message" style ={{height:`150px`}}></textarea> | ||
<button type="submit">SEND MESSAGE</button> | ||
</form> | ||
</div> | ||
) | ||
} | ||
</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 |
---|---|---|
@@ -1,66 +1,76 @@ | ||
import React from "react" | ||
|
||
export default function Projects(){ | ||
return( | ||
<div className="project-page"> | ||
<h1 className="project-header">Project</h1> | ||
<div className="project-container"> | ||
<div className="project-section"> | ||
<div className="project-content"> | ||
<img src="" alt="" className="project-thumb-nail" /> | ||
<h3 className="project-title"></h3> | ||
<h4 className="project-stacks"></h4> | ||
</div> | ||
</div> | ||
|
||
<div className="project-section"> | ||
<div className="project-content"> | ||
<img src="" alt="" className="project-thumb-nail" /> | ||
<h3 className="project-title"></h3> | ||
<h4 className="project-stacks"></h4> | ||
</div> | ||
</div> | ||
|
||
<div className="project-section"> | ||
<div className="project-content"> | ||
<img src="" alt="" className="project-thumb-nail" /> | ||
<h3 className="project-title"></h3> | ||
<h4 className="project-stacks"></h4> | ||
</div> | ||
</div> | ||
|
||
<div className="project-section"> | ||
<div className="project-content"> | ||
<img src="" alt="" className="project-thumb-nail" /> | ||
<h3 className="project-title"></h3> | ||
<h4 className="project-stacks"></h4> | ||
</div> | ||
</div> | ||
|
||
<div className="project-section"> | ||
<div className="project-content"> | ||
<img src="" alt="" className="project-thumb-nail" /> | ||
<h3 className="project-title"></h3> | ||
<h4 className="project-stacks"></h4> | ||
</div> | ||
</div> | ||
import React from "react"; | ||
import * as Images from "../images"; | ||
export default function Projects() { | ||
return ( | ||
<div className="project-page"> | ||
<h1 className="project-header">Project</h1> | ||
<div className="project-container"> | ||
<div className="project-section"> | ||
<img | ||
src={Images.weatherThumbNail} | ||
alt="weather-thumb-nail" | ||
className="project-thumb-nail" | ||
/> | ||
<div className="project-content"> | ||
<h3 className="project-title">WEATHER APP</h3> | ||
<h4 className="project-stacks">HTML • CSS • React • API </h4> | ||
</div> | ||
</div> | ||
{/* project section-2 */} | ||
<div className="project-section"> | ||
<img | ||
src={Images.quizThumbNail} | ||
alt="weather-thumb-nail" | ||
className="project-thumb-nail" | ||
/> | ||
<div className="project-content"> | ||
<h3 className="project-title"> QUIZZICAL</h3> | ||
<h4 className="project-stacks">HTML • CSS • React • API </h4> | ||
</div> | ||
</div> | ||
|
||
<div className="project-section"> | ||
<div className="project-content"> | ||
<img src="" alt="" className="project-thumb-nail" /> | ||
<h3 className="project-title"></h3> | ||
<h4 className="project-stacks"></h4> | ||
</div> | ||
</div> | ||
{/* Project section-3 */} | ||
<div className="project-section"> | ||
<img | ||
src={Images.roomsystemThumbNail} | ||
alt="weather-thumb-nail" | ||
className="project-thumb-nail" | ||
/> | ||
<div className="project-content"> | ||
<h3 className="project-title">ROOM BOOKING SYSTEM</h3> | ||
<h4 className="project-stacks"> | ||
HTML • CSS • Bootstrap • Flask • mySQL • Python{" "} | ||
</h4> | ||
</div> | ||
</div> | ||
|
||
<div className="project-section"> | ||
<div className="project-content"> | ||
<img src="" alt="" className="project-thumb-nail" /> | ||
<h3 className="project-title"></h3> | ||
<h4 className="project-stacks"></h4> | ||
</div> | ||
</div> | ||
</div> | ||
{/* Project section-4 */} | ||
<div className="project-section"> | ||
<img | ||
src={Images.chromeExtThumbNail} | ||
alt="weather-thumb-nail" | ||
className="project-thumb-nail" | ||
/> | ||
<div className="project-content"> | ||
<h3 className="project-title">Walk-As-You-Scroll</h3> | ||
<h4 className="project-stacks"> | ||
HTML • CSS • Javascript • jQuery{" "} | ||
</h4> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
{/* <div className="project-section"> | ||
<img | ||
src={Images.weatherThumbNail} | ||
alt="weather-thumb-nail" | ||
className="project-thumb-nail" | ||
/> | ||
<div className="project-content"> | ||
<h3 className="project-title">WEATHER APP</h3> | ||
<h4 className="project-stacks">HTML • CSS • React • API </h4> | ||
</div> | ||
</div> */} | ||
</div> | ||
</div> | ||
); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.