|
1 | 1 | import React from 'react'; |
| 2 | +import '../stylesheets/Contact.css'; |
2 | 3 |
|
3 | 4 | const Contact: React.FC = () => { |
4 | 5 | return ( |
5 | | - <div className="home"> |
6 | | - <div> |
7 | | - <h1>Contact Us!</h1> |
8 | | - <p>The Chronos Team is always looking for any feedback or suggestions for Chronos.</p> |
9 | | - <p> |
10 | | - You can find issues the team is currently working on |
11 | | - <a href="https://github.com/open-source-labs/Chronos/issues" target="_blank"> |
12 | | - here |
13 | | - </a> |
14 | | - . |
15 | | - </p> |
16 | | - <p> |
17 | | - If you would like your voice heard, fill out the form and we will get back to you ASAP! |
18 | | - </p> |
19 | | - </div> |
20 | | - <div> |
21 | | - <form> |
22 | | - <label htmlFor="fname">First Name</label> |
23 | | - <input type="text" id="fname" name="firstname" placeholder="Your name.." /> |
24 | | - <br /> |
25 | | - <label htmlFor="lname">Last Name</label> |
26 | | - <input type="text" id="lname" name="lastname" placeholder="Your last name.." /> |
27 | | - <br /> |
28 | | - <label htmlFor="email">E-mail</label> |
29 | | - <input type="text" id="email" name="email" placeholder="Your e-mail address.." /> |
30 | | - <br /> |
31 | | - <label htmlFor="subject">Subject</label> |
32 | | - <input type="text" id="subject" name="subject" placeholder="Subject" /> |
33 | | - <br /> |
34 | | - <label htmlFor="message">Message</label> |
35 | | - <textarea |
36 | | - id="message" |
37 | | - name="message" |
38 | | - placeholder="Write something.." /*style="height:200px"*/ |
39 | | - ></textarea> |
40 | | - <br /> |
41 | | - <label htmlFor="myfile">Select a file: </label> |
42 | | - <input type="file" id="myfile" name="myfile" accept="image/*"></input> |
43 | | - <br /> |
44 | | - <input type="submit" value="Submit" /> |
45 | | - </form> |
| 6 | + <div className="contact"> |
| 7 | + <div className="contact-border"> |
| 8 | + <div className="contact-container"> |
| 9 | + <div className="contact-blurb"> |
| 10 | + <h1>Contact Us!</h1> |
| 11 | + <br /> |
| 12 | + <p>The Chronos Team is always looking for any feedback or suggestions for Chronos.</p> |
| 13 | + <p> |
| 14 | + You can find issues the team is currently working on |
| 15 | + <a href="https://github.com/open-source-labs/Chronos/issues" target="_blank"> |
| 16 | + here |
| 17 | + </a> |
| 18 | + . |
| 19 | + </p> |
| 20 | + <p> |
| 21 | + If you would like your voice heard, fill out the form and we will get back to you |
| 22 | + ASAP! |
| 23 | + </p> |
| 24 | + </div> |
| 25 | + <div className="chronos-contact-container"> |
| 26 | + <img src={'../assets/chronos-v4.png'} alt="Chronos logo" /> |
| 27 | + </div> |
| 28 | + </div> |
| 29 | + <div className="email-container"> |
| 30 | + <form> |
| 31 | + <label htmlFor="fname">First Name: </label> |
| 32 | + <input type="text" id="fname" name="firstname" placeholder="Your name.." /> |
| 33 | + <br /> |
| 34 | + <label htmlFor="lname">Last Name: </label> |
| 35 | + <input type="text" id="lname" name="lastname" placeholder="Your last name.." /> |
| 36 | + <br /> |
| 37 | + <label htmlFor="email">E-mail: </label> |
| 38 | + <input type="text" id="email" name="email" placeholder="Your e-mail address.." /> |
| 39 | + <br /> |
| 40 | + <label htmlFor="subject">Subject: </label> |
| 41 | + <input type="text" id="subject" name="subject" placeholder="Subject" /> |
| 42 | + <br /> |
| 43 | + <label htmlFor="message">Message: </label> |
| 44 | + <br /> |
| 45 | + <textarea |
| 46 | + id="message" |
| 47 | + name="message" |
| 48 | + placeholder="Write something.." /*style="height:200px"*/ |
| 49 | + ></textarea> |
| 50 | + <br /> |
| 51 | + <label htmlFor="myfile">Select a file: </label> |
| 52 | + <input type="file" id="myfile" name="myfile" accept="image/*"></input> |
| 53 | + <br /> |
| 54 | + <input id="contact-submit" type="submit" value="Submit" /> |
| 55 | + </form> |
| 56 | + </div> |
46 | 57 | </div> |
47 | 58 | </div> |
48 | 59 | ); |
|
0 commit comments