@@ -2,16 +2,23 @@ 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 p-6" >
5+ < div className = "flex flex-col items-center justify-center min-h-screen bg-bgPrimary p-6 sm:p-8 md:p-10" >
6+ { /* Logo */ }
67 < img
78 src = { logo }
89 alt = "CollabShop Logo, a collaboration platform for grocery shopping."
9- className = "w-40 sm:w-48 md:w-56 lg:w-64 h-auto mb-6"
10+ 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 "
1011 />
11- < h1 className = "text-txtPrimary text-xl sm:text-2xl md:text-4xl font-bold text-center mb-4" >
12+
13+ { /* Heading with squared style */ }
14+ < h1 className = "bg-[#99D98C] text-txtPrimary text-2xl sm:text-3xl md:text-4xl font-extrabold text-center mb-4 p-4 rounded-lg shadow-sm max-w-2xl" >
1215 < 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{ ' ' }
16+ tool that embodies the spirit of teamwork and collaboration.
17+ </ h1 >
18+
19+ { /* Description with squared style */ }
20+ < p className = "bg-[#99D98C] text-txtPrimary text-base sm:text-lg md:text-xl text-center mb-4 p-4 rounded-lg shadow-sm max-w-2xl leading-relaxed" >
21+ Created by early-career developers from{ ' ' }
1522 < a
1623 href = "https://the-collab-lab.codes/"
1724 target = "_blank"
@@ -22,12 +29,17 @@ export function LandingPage() {
2229 </ a >
2330 , our smart shopping list app learns your buying habits, reminds you of
2431 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 font-bold text-base sm: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.
32+ effortlessly share and collaborate on lists.
33+ </ p >
34+
35+ < p className = "bg-[#99D98C] text-txtPrimary font-semibold text-base sm:text-lg md:text-xl text-center mb-6 p-4 rounded-lg shadow-sm max-w-xl" >
36+ With CollabShop, planning your grocery trips becomes a seamless and
37+ enjoyable experience!
38+ </ p >
39+
40+ { /* Call to Action */ }
41+ < p className = "bg-[#99D98C] text-txtPrimary text-lg sm:text-xl md:text-2xl text-center font-bold mb-6 p-4 rounded-lg shadow-sm max-w-lg" >
42+ Ready to start your journey? Click the sign-in button below to begin.
3143 </ p >
3244 </ div >
3345 ) ;
0 commit comments