Skip to content

Commit

Permalink
Add larger logo to Landing page and update tailwind of h1 and p eleme…
Browse files Browse the repository at this point in the history
…nts.
  • Loading branch information
dterceroparker committed Oct 10, 2024
1 parent b8e0d70 commit 95a5dd5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 11 deletions.
Binary file modified src/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 23 additions & 11 deletions src/views/LandingPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,23 @@ import logo from '../assets/logo.png';

export function LandingPage() {
return (
<div className="flex flex-col items-center justify-center min-h-screen bg-bgPrimary p-6">
<div className="flex flex-col items-center justify-center min-h-screen bg-bgPrimary p-6 sm:p-8 md:p-10">
{/* Logo */}
<img
src={logo}
alt="CollabShop Logo, a collaboration platform for grocery shopping."
className="w-40 sm:w-48 md:w-56 lg:w-64 h-auto mb-6"
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"
/>
<h1 className="text-txtPrimary text-xl sm:text-2xl md:text-4xl font-bold text-center mb-4">

{/* Heading with squared style */}
<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">
<strong>CollabShop</strong> is more than just a grocery app—it&apos;s a
tool that embodies the spirit of teamwork and collaboration. Created by
early-career developers from{' '}
tool that embodies the spirit of teamwork and collaboration.
</h1>

{/* Description with squared style */}
<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">
Created by early-career developers from{' '}
<a
href="https://the-collab-lab.codes/"
target="_blank"
Expand All @@ -22,12 +29,17 @@ export function LandingPage() {
</a>
, our smart shopping list app learns your buying habits, reminds you of
what you might need for your next store run, and allows you to
effortlessly share and collaborate on lists. With CollabShop, planning
your grocery trips becomes a seamless and enjoyable experience!
</h1>
<p className="text-txtPrimary font-bold text-base sm:text-lg md:text-xl text-center mb-6">
Ready to start your journey? Click the sign-in button below to begin
planning your grocery runs with CollabShop today.
effortlessly share and collaborate on lists.
</p>

<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">
With CollabShop, planning your grocery trips becomes a seamless and
enjoyable experience!
</p>

{/* Call to Action */}
<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">
Ready to start your journey? Click the sign-in button below to begin.
</p>
</div>
);
Expand Down

0 comments on commit 95a5dd5

Please sign in to comment.