Commit With Frontend and Backend in MERN

This commit is contained in:
sanikapendurkar
2025-02-10 14:24:56 +05:30
commit 0f4e1a3183
2518 changed files with 448667 additions and 0 deletions

57
frontend/src/Page3.css Normal file
View File

@@ -0,0 +1,57 @@
/* Page3.css */
.container {
width: 100%;
max-width: 600px;
margin: 0 auto;
padding: 20px;
text-align: center;
font-family: Arial, sans-serif;
}
h1 {
font-size: 2rem;
margin-bottom: 20px;
color: #333;
}
form {
margin-bottom: 20px;
}
button {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
font-size: 1rem;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}
#meetingDetails {
margin-top: 20px;
padding: 15px;
background-color: #f8f9fa;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#meetingDetails p {
font-size: 1rem;
color: #333;
}
#meetingDetails a {
color: #007bff;
text-decoration: none;
}
#meetingDetails a:hover {
text-decoration: underline;
}