@@ -87,7 +87,7 @@ const Home = () => {
8787 { /* The image source now switches instantaneously.
8888 Inline style disables any default transition. */ }
8989 < img
90- src = { isDarkMode ? darkLogo : logo }
90+ src = { isDarkMode ? darkLogo : darkLogo }
9191 alt = "LabConnect"
9292 height = "289"
9393 style = { { transition : "none" } }
@@ -154,26 +154,38 @@ const Home = () => {
154154 className = "w-full flex justify-center py-10"
155155 >
156156 < div className = "group rounded-lg p-8 w-11/12 md:w-3/4 lg:w-/6 bg-[#4682e3] dark:bg-blue-900 hover:bg-[rgba(70,130,227,0.9)] dark:hover:bg-blue-800 filter saturate-[1.2] shadow-md hover:shadow-xl transition-all duration-300 transform hover:-translate-y-2" >
157- < h2 className = "text-2xl font-semibold text-center group-hover :text-white" >
157+ < h2 className = "text-2xl font-semibold text-center text-dark-800 dark :text-white" >
158158 About Us
159159 </ h2 >
160- < p className = "mt-4 text-lg text-center group-hover :text-white" >
160+ < p className = "mt-4 text-lg text-center text-dark-800 dark :text-white" >
161161 LabConnect is a platform dedicated to bridging the gap between
162162 students and research opportunities. We aim to make it easier for
163163 students to find meaningful lab/research work while helping
164164 professors connect with passionate individuals through a convenient,
165165 all-in-one application. Our team is hard at work, and we will provide
166166 updates on our progress so keep an eye out for announcements!
167167 </ p >
168+ < p className = "mt-4 text-lg text-center text-dark-800 dark:text-white" >
169+ If you're interested in learning more about the team at RCOS or are thinking
170+ about joining LabConnect or any branch of RCOS, please check out the new website
171+ here to learn more about existing projects and areas of interest: < Link
172+ to = "https://new.rcos.io"
173+ target = "_blank"
174+ rel = "noopener noreferrer"
175+ className = "hover:underline text-red-700 dark:text-red-600 text-1xl font-bold"
176+ >
177+ RCOS
178+ </ Link >
179+ </ p >
168180 </ div >
169181 </ section >
170182
171183 { /* Meet Our Team Section */ }
172184 < section id = "team" className = "py-20 text-center w-full" >
173- < h2 className = "text-2xl font-semibold text-gray-800 dark:text-gray-100 " >
185+ < h2 className = "text-2xl font-semibold text-gray-800 dark:text-white " >
174186 Meet Our Team
175187 </ h2 >
176- < p className = "mt-4 max-w-3xl mx-auto text-lg px-6 text-gray-700 dark:text-gray-200 " >
188+ < p className = "mt-4 max-w-3xl mx-auto text-lg px-6 text-gray-700 dark:text-white " >
177189 Thanks for checking us out! We are a team of dedicated open-source
178190 developers working hard to make this product into a reality.
179191 </ p >
@@ -238,18 +250,18 @@ const Home = () => {
238250 ] . map ( ( member , index ) => (
239251 < div
240252 key = { index }
241- className = "bg-white dark:bg-gray-700 shadow-md rounded-2xl p-6 w-full flex flex-col items-center text-center transition-transform duration-300 hover:shadow-xl hover:-translate-y-2 border-2 border-blue-600"
253+ className = "bg-white dark:bg-gray-800 shadow-md rounded-2xl p-6 w-full flex flex-col items-center text-center transition-transform duration-300 hover:shadow-xl hover:-translate-y-2 border-2 border-blue-600"
242254 >
243- < h3 className = "text-lg font-semibold text-gray-800 dark:text-gray-100 " >
255+ < h3 className = "text-lg font-semibold text-gray-800 dark:text-blue-600 " >
244256 { member . name }
245257 </ h3 >
246- < p className = "text-sm text-gray-600 dark:text-gray-300 mt-2" >
258+ < p className = "text-sm text-gray-600 dark:text-white mt-2" >
247259 { member . major } , Class of { member . gradYear }
248260 </ p >
249- < p className = "text-sm text-blue-600 mt-2 font-medium" >
261+ < p className = "text-sm text-blue-600 dark:text-white mt-2 font-medium" >
250262 { member . role }
251263 </ p >
252- < p className = "text-sm text-gray-500 mt-1" >
264+ < p className = "text-sm text-gray-500 dark:text-white mt-1" >
253265 Skill: { member . skill }
254266 </ p >
255267 </ div >
@@ -259,7 +271,7 @@ const Home = () => {
259271
260272 { /* Contact Us Section */ }
261273 < section id = "contact" className = "py-20 text-center" >
262- < div className = "bg-gray-100 dark:bg-gray-600 max-w-xl mx-auto p-4" >
274+ < div className = "bg-gray-100 dark:bg-gray-500 dark:bg-opacity-5 max-w-xl mx-auto p-4 rounded-lg " >
263275 < h1 className = "text-2xl font-bold mb-4 text-gray-800 dark:text-gray-100" >
264276 Contact Us
265277 </ h1 >
0 commit comments