@@ -2,16 +2,18 @@ import logo from '../assets/logo.png';
22
33export function LandingPage ( ) {
44 return (
5- < div className = "flex flex-col items-center justify-center min-h-screen bg-bgPrimary dark:bg-bgPrimaryDark p-6 " >
5+ < div className = "bg-bgPrimary dark:bg-bgPrimaryDark flex flex-col items-center justify-center min-h-screen p-6 sm:p-8 md:p-10 " >
66 < img
77 src = { logo }
88 alt = "CollabShop Logo, a collaboration platform for grocery shopping."
9- className = "w-45 h-auto mb-6"
9+ className = "w-64 sm:w-72 md:w-80 lg:w-96 h-auto mb-6 max-w-full rounded-lg shadow-sm transform hover:scale-105 transition-all duration-300 ease-in-out "
1010 />
11- < h1 className = "text-txtPrimary dark:text-txtPrimaryDark text-2xl md:text-4xl font-bold text-center mb-4" >
11+ < h1 className = "bg-[#99D98C] text-txtPrimary dark:text-txtPrimaryDark text-2xl sm:text-3xl md:text-4xl font-extrabold text-center mb-4 p-4 rounded-lg max-w-2xl " >
1212 < strong > CollabShop</ strong > is more than just a grocery app—it's a
13- tool that embodies the spirit of teamwork and collaboration. Created by
14- early-career developers from{ ' ' }
13+ tool that embodies the spirit of teamwork and collaboration.
14+ </ h1 >
15+ < p className = "bg-[#99D98C] text-txtPrimary text-base sm:text-lg md:text-xl text-center mb-4 p-4 rounded-lg max-w-2xl leading-relaxed" >
16+ Created by early-career developers from{ ' ' }
1517 < a
1618 href = "https://the-collab-lab.codes/"
1719 target = "_blank"
@@ -22,12 +24,15 @@ export function LandingPage() {
2224 </ a >
2325 , our smart shopping list app learns your buying habits, reminds you of
2426 what you might need for your next store run, and allows you to
25- effortlessly share and collaborate on lists. With CollabShop, planning
26- your grocery trips becomes a seamless and enjoyable experience!
27- </ h1 >
28- < p className = "text-txtPrimary dark:text-txtPrimaryDark font-bold text-lg md:text-xl text-center mb-6" >
29- Ready to start your journey? Click the sign-in button below to begin
30- planning your grocery runs with CollabShop today.
27+ effortlessly share and collaborate on lists.
28+ </ p >
29+
30+ < p className = "bg-[#99D98C] text-txtPrimary dark:text-txtPrimaryDark font-semibold text-base sm:text-lg md:text-xl text-center mb-6 p-4 rounded-lg max-w-xl" >
31+ With CollabShop, planning your grocery trips becomes a seamless and
32+ enjoyable experience!
33+ </ p >
34+ < p className = "bg-[#99D98C] text-txtPrimary dark:text-txtPrimaryDark text-lg sm:text-xl md:text-2xl text-center font-bold mb-6 p-4 rounded-lg max-w-lg" >
35+ Ready to start your journey? Click the sign-in button below to begin.
3136 </ p >
3237 </ div >
3338 ) ;
0 commit comments