Skip to content

Commit

Permalink
add GH repo to Developers page.
Browse files Browse the repository at this point in the history
  • Loading branch information
dterceroparker committed Oct 11, 2024
1 parent 10a3553 commit cb0cb24
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/views/LandingPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ export function LandingPage() {
alt="CollabShop Logo, a collaboration platform for grocery shopping."
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="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">
<h1 className=" 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">
<strong>CollabShop</strong> is more than just a grocery app—it&apos;s a
tool that embodies the spirit of teamwork and collaboration.
</h1>
<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">
<p className="text-txtPrimary dark:text-txtPrimaryDark text-base sm:text-lg md:text-xl text-center mb-4 p-4 rounded-lg max-w-2xl leading-relaxed">
Created by early-career developers from{' '}
<a
href="https://the-collab-lab.codes/"
Expand All @@ -27,11 +27,11 @@ export function LandingPage() {
effortlessly share and collaborate on lists.
</p>

<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">
<p className=" 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">
With CollabShop, planning your grocery trips becomes a seamless and
enjoyable experience!
</p>
<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">
<p className="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">
Ready to start your journey? Click the sign-in button below to begin.
</p>
</div>
Expand Down
12 changes: 12 additions & 0 deletions src/views/Team.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,18 @@ export function Team() {
friendly, inclusive, and helpful for all users. Let&apos;s connect and
grow together!
</p>
<div className="flex flex-col items-center mb-10">
<a
href="https://github.com/the-collab-lab/tcl-74-smart-shopping-list"
target="_blank"
rel="noopener noreferrer"
aria-label="CollabShop GitHub Repository"
className="flex flex-col items-center text-[#0e324e] hover:text-[#52b788] transition-colors"
>
<FaGithub size={30} />
<span className="text-lg mt-2">View CollabShop on GitHub</span>
</a>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 justify-items-center">
{developers.map((dev, index) => (
<div
Expand Down

0 comments on commit cb0cb24

Please sign in to comment.