Skip to content

Commit

Permalink
Merge pull request #32 from DevBigEazi/staging
Browse files Browse the repository at this point in the history
Staging
  • Loading branch information
DevBigEazi authored Sep 27, 2024
2 parents 82aec5d + fcca962 commit bcd8878
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions src/sections/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ const socialCommunities = [
{
name: "telegram icon",
icon: icons.telegram,
link: "/",
link: "https://t.me/Jarafixyz",
},
{
name: "linked in icon",
icon: icons.linkedin,
link: "/",
link: "https://www.linkedin.com/company/jarafi",
},
{
name: "x/twitter icon",
icon: icons.x,
link: "/",
link: "https://x.com/JaraFi_xyz",
},
];

Expand All @@ -41,6 +41,8 @@ const Footer = () => {
{socialCommunities.map(({ name, icon, link }) => (
<a
href={link}
target="_blank"
rel="noopener noreferrer"
key={name}
className="h-12 w-12 max-[345px]:h-8 max-[345px]:w-8 flex justify-center items-center rounded-full border-[1px] border-primary transition-all duration-[0.5s] hover:bg-linen">
<img
Expand Down
4 changes: 2 additions & 2 deletions src/sections/Hero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const Hero = () => {
<section className="bg-linen ">
<div className="max-container min-h-16 pt-28 max-sm:pt-16 flex max-md:flex-col items-start justify-between gap-x-10 max-md:gap-y-9">
<div className="flex flex-col w-full max-sm:px-3.5 pl-4">
<div className="space-y-10 flex flex-col">
<div className="max-md:space-y-4 space-y-10 flex flex-col">
<h1 className="max-sm:text-3xl text-primary text-4xl font-bold font-MerriweatherSans">
One App For All Your Crypto Needs.
</h1>
Expand All @@ -116,7 +116,7 @@ const Hero = () => {
) : (
<button
onClick={handleOpenModal}
className="self-start mt-28 h-11 max-sm:w-full text-center border border-primary transition-all duration-500 hover:bg-whitesmoke rounded-lg text-primary text-base max-sm:text-center font-montserrat font-normal items-center py-3 px-7 ">
className="self-start mt-24 max-md:mt-10 h-11 max-sm:w-full text-center border border-primary transition-all duration-500 hover:bg-whitesmoke rounded-lg text-primary text-base max-sm:text-center font-montserrat font-normal items-center py-3 px-7 ">
Join waitlist here
</button>
)}
Expand Down

0 comments on commit bcd8878

Please sign in to comment.