-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/cit 31 contact developers (#47)
* added contact page * completed contact page * [CIT-31] Fix unescaped chars --------- Co-authored-by: Ishaan <[email protected]>
- Loading branch information
1 parent
867bca2
commit 9b15bb0
Showing
3 changed files
with
152 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React from 'react'; | ||
import styles from './styles.module.css'; | ||
|
||
const AboutUsPage: React.FC = () => { | ||
return ( | ||
<div className={styles.container}> | ||
<div className={styles.logoAndContentContainer}> | ||
<div className={styles.center}> | ||
<h1 className={styles.heading}>- ABOUT US -</h1> | ||
<p className={styles.description}> | ||
Welcome to Eventual - your gateway to meaningful connections and exciting events! | ||
</p> | ||
<p className={styles.description}> | ||
Our platform allows you to connect with like-minded individuals, attend events, and share your own gatherings with the community. Whether it's discovering new hobbies, exploring your city's hidden gems, or simply making new friends, Eventual is here to make it happen. | ||
</p> | ||
<p className={styles.description}> | ||
We take pride in providing exceptional tech support, available 24/7, to ensure your experience with us is seamless and enjoyable. Our team is always ready to assist, so you can focus on what matters most - connecting, engaging, and having a great time! | ||
</p> | ||
<p className={styles.phoneNumber}>Join us today and become a part of our thriving community. Let's create lasting memories and build meaningful connections together!</p> | ||
<p className={styles.phoneNumber}>-</p> | ||
|
||
<p className={styles.phoneNumber}>Phone: 647-324-8322</p> | ||
<p className={styles.phoneNumber}>Email: [email protected]</p> | ||
</div> | ||
<div className={styles.logoContainer}> | ||
<img src="/eventual_logo.svg" alt="Logo" width={150} height={150} /> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default AboutUsPage; |
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,113 @@ | ||
.container { | ||
display: flex; | ||
justify-content: center; | ||
height: 100vh; | ||
background-color: rgb(1, 1, 32); | ||
|
||
} | ||
.center { | ||
text-align: center; | ||
} | ||
|
||
.heading { | ||
font-size: 50px; | ||
font-weight: bold; | ||
color: white; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.description { | ||
font-size: 20px; | ||
color: white; | ||
margin-bottom: 20px; | ||
margin-left: 100px; | ||
margin-right: 100px; | ||
|
||
} | ||
|
||
.phoneNumber { | ||
font-size: 24px; | ||
color: white; | ||
} | ||
|
||
.custom-heading { | ||
font-size: 50px; | ||
} | ||
|
||
.custom-background { | ||
background-color: rgb(1, 1, 32); | ||
} | ||
|
||
.custom-input { | ||
border: 1px solid #ccc; | ||
padding: 0.5rem; | ||
border-radius: 4px; | ||
margin-bottom: 1rem; | ||
color: black; | ||
} | ||
.custom-box { | ||
border: 1px solid #ccc; | ||
padding: 1rem; | ||
border-radius: 4px; | ||
margin-bottom: 1rem; | ||
|
||
/* height: 100%; */ | ||
} | ||
.custom-acc-button { | ||
border: 1px solid #ccc; | ||
padding: 0.5rem; | ||
border-radius: 4px; | ||
} | ||
|
||
.container2 { | ||
margin: 3in; | ||
} | ||
|
||
.center8 { | ||
text-align: center; | ||
margin: 3in; | ||
|
||
} | ||
|
||
.heading2 { | ||
font-size: 2em; | ||
margin-bottom: 1em; | ||
} | ||
|
||
.description2 { | ||
font-size: 1.2em; | ||
line-height: 1.6; | ||
margin-bottom: 1.5em; | ||
} | ||
|
||
.phoneNumber { | ||
font-size: 1.1em; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
background-color: rgb(1, 1, 32); | ||
} | ||
|
||
.logoAndContentContainer { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin-top: 1rem; /* Adjust the margin-top value to move everything higher */ | ||
} | ||
|
||
.logoContainer { | ||
/* Add styles for the logo container */ | ||
text-align: center; | ||
} | ||
|
||
.logoContainer img { | ||
width: 150px; /* Adjust the width to your desired size */ | ||
height: 150px; /* Adjust the height to your desired size */ | ||
margin: 50px; /* Add margin around the logo */ | ||
} | ||
|
||
/* Add other styles as you have in your existing CSS */ |
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
9b15bb0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@aajaleel is attempting to deploy a commit to a Personal Account on Vercel that is not owned by them.
In order for the commit to be deployed, @aajaleel must be granted access to the connected Vercel project.
If you're the owner of the Personal Account, transfer the project to a Vercel Team and start collaborating, or learn more.