Skip to content
Merged
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
37 changes: 25 additions & 12 deletions client/src/pages/ContactUs.css
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
@import url("https://fonts.googleapis.com/css?family=League+Gothic");

.App2 {
text-align: center;
background: linear-gradient(to bottom, rgb(45, 4, 4), #6f0000);
background: linear-gradient(to bottom, rgb(45, 4, 4), #6f0000);
min-height: 100vh;
}

.contactus-parent {
margin-top: 6%;
display: flex;
flex-direction: row;
align-items: center;
align-items: flex-start;
justify-content: space-between;
}

.contactus-child1 {
width: 100%;
width: 30%;
}

.contactus-child2 {
padding-top: 2%;
width: 80%;
width: 60%;
}

.contactus-child1 h1 {
Expand All @@ -43,12 +43,13 @@
color: #f6f6f6;
font: "Gothic A1";
text-align: left;
font-size: 1.1vw;
font-size: 1.2vw;
padding-left: 12%;
}

.child1-table {
padding-left: 12%;
width: 100%;
margin-top: 4%;
}

.contact-container {
Expand All @@ -66,6 +67,7 @@
box-shadow: 2px;
padding: 7%;
width: 80%;
margin: -50px auto 0 auto; /* Adjusted margin */
}

.contact-form form {
Expand Down Expand Up @@ -93,12 +95,12 @@
border: 1px solid #dddddd;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.3);
color: rgb(0, 0, 0); /* Set text color to white */
color: rgb(0, 0, 0);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
color: rgba(142, 139, 139, 0.774); /* Set placeholder text color to white */
color: rgba(142, 139, 139, 0.774);
}

.contact-form button {
Expand All @@ -110,10 +112,21 @@
width: 100%;
border-radius: 25px;
align-self: center;
transition: background-color 0.3s; /* Add transition for smooth hover effect */
transition: background-color 0.3s;
}

.contact-form button:hover {
background-color: #0f2c45; /* Change color on hover */
background-color: #0f2c45;
}

/* Adjusted table cell wrapping */
.child1-table th,
.child1-table td {
color: #ffffff;
font-size: 1.5rem;
white-space: normal; /* Allow wrapping */
word-wrap: break-word; /* Break words */
max-width: 500px; /* Adjust the maximum width as needed */
padding-left: 170px; /* Add left padding */

}
66 changes: 33 additions & 33 deletions client/src/pages/ContactUs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import "./ContactUs.css";
import Footer from "../components/shared/Footer"
import Navbar from "../components/shared/Navbar/Navbar";

function ContactUs() {
const [fullName, setFullName] = useState("");
const [email, setEmail] = useState("");
Expand All @@ -26,49 +27,21 @@ function ContactUs() {
<div>
<h1>CONTACT US</h1>
<p>
Email, call or complete the form to find out <br /> how Condense
Email, call or complete the form <br /> to find out how Condense
can help solve your problem.
</p>
<p>
<FontAwesomeIcon icon={["far", "envelope"]} /> &nbsp; &nbsp;
hello@condense.com
contactus@condense.com
</p>
<p>
<FontAwesomeIcon icon={["fas", "phone"]} /> &nbsp; &nbsp; +91
<FontAwesomeIcon icon={["fas", "phone"]} /> &nbsp; +91
99999 99999
</p>
<p>
<FontAwesomeIcon icon={["fas", "map-marker-alt"]} /> &nbsp; &nbsp;
IIT ROPAR, Punjab{" "}
IIT ROPAR, &nbsp; Punjab{" "}
</p>
<div className="child1-table">
<table>
<thead>
<tr>
<th>Feedback and Suggestions</th>
<th>Media Inquiries</th>
<th>Customer Support</th>
</tr>
</thead>
<tbody>
<tr>
<td>
We value your feedback and are continuously working to
improve Condense. Your input is crucial in shaping the
future of Condense.
</td>
<td>
For media related inquiries please email us at
media@condense.com
</td>
<td>
Our customer support team is available around the clock to
address any concerns you may have.
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div className="contactus-child2">
Expand Down Expand Up @@ -112,11 +85,38 @@ function ContactUs() {
</div>
</div>
</div>
<div className="child1-table">
<table>
<thead>
<tr>
<th>Feedback and Suggestions</th>
<th>Media Inquiries</th>
<th>Customer Support</th>
</tr>
</thead>
<tbody>
<tr>
<td>
We value your feedback and are continuously working to
improve Condense. Your input is crucial in shaping the
future of Condense.
</td>
<td>
For media related inquiries please email us at
media@condense.com
</td>
<td>
Our customer support team is available around the clock to
address any concerns you may have.
</td>
</tr>
</tbody>
</table>
</div>
</div>
<Footer/>
</>
);
}

export default ContactUs;

2 changes: 1 addition & 1 deletion client/src/pages/Dashboard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const Dashboard = () => {
});
}}
className="cursor-pointer text-black bg-gradient-to-b from-red-400 to-red-900 rounded-xl shadow-lg w-[150px] h-[50px] mt-[55px] hover:underline"
style={{ alignSelf: "center" }} // Center the button horizontally
style={{ alignSelf: "center" }}
>
Join Meeting
</button>
Expand Down