Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/home/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const Button = ({
return (
<Link
href={link}
className={`${textColor} ${background} ${borderColor} w-full rounded-xl border-2 py-3 text-center text-3xl`}
className={`${textColor} ${background} ${borderColor} w-full rounded-xl border-2 py-3 text-center text-xl sm:text-3xl`}
>
{text}
</Link>
Expand Down
8 changes: 4 additions & 4 deletions src/components/home/readytojoin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import Button from "@/components/home/button";

const ReadyToJoin = () => {
return (
<div className="bg-pickleball-green-200 text-pickleball-lime-100 flex w-full justify-center py-[12vh]">
<div className="flex flex-col items-center gap-y-[5vh]">
<p className="text-5xl font-bold">READY TO JOIN?</p>
<p className="text-center text-lg">
<div className="bg-pickleball-green-200 text-pickleball-lime-100 flex w-full justify-center px-4 py-[12vh] sm:px-8">
<div className="flex flex-col items-center gap-y-8 text-center sm:gap-y-[5vh]">
<p className="text-4xl font-bold sm:text-5xl">READY TO JOIN?</p>
<p className="max-w-xs text-center text-base sm:max-w-2xl sm:text-lg">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor <br /> incididunt ut labore et dolore magna aliqua.
</p>
Expand Down
Loading