diff --git a/app/(pages)/(index-page)/about-us/_components/About/Components/AnimalCard.module.scss b/app/(pages)/(index-page)/about-us/_components/About/Components/AnimalCard.module.scss index 17f7a3af..549202ab 100644 --- a/app/(pages)/(index-page)/about-us/_components/About/Components/AnimalCard.module.scss +++ b/app/(pages)/(index-page)/about-us/_components/About/Components/AnimalCard.module.scss @@ -22,7 +22,7 @@ .text { color: #123041; font-family: 'Metropolis'; - font-size: 14px; + font-size: 16px; font-style: normal; font-weight: 400; line-height: 150%; /* 21px */ diff --git a/app/(pages)/(index-page)/about-us/_components/Hello/Hello.module.scss b/app/(pages)/(index-page)/about-us/_components/Hello/Hello.module.scss index 8ae624be..f4b571be 100644 --- a/app/(pages)/(index-page)/about-us/_components/Hello/Hello.module.scss +++ b/app/(pages)/(index-page)/about-us/_components/Hello/Hello.module.scss @@ -34,24 +34,23 @@ $tablet-breakpoint: 768px; } h1{ - color: #FFF; + color: #123041; font-family: Metropolis; - font-size: 110.095px; + font-size: 64px; font-style: normal; font-weight: 700; line-height: 111.5%; /* 122.755px */ letter-spacing: 2.202px; - @media (max-width: $tablet-breakpoint) { font-size: 48px; } } p{ - color: #FFF; + color: #123041; font-family: Metropolis; - font-size: 28px; + font-size: 24px; font-style: normal; - font-weight: 600; + font-weight: 500; line-height: 150%; /* 42px */ letter-spacing: 0.56px; diff --git a/app/(pages)/(index-page)/about-us/_components/OurTeam/OurTeam.module.scss b/app/(pages)/(index-page)/about-us/_components/OurTeam/OurTeam.module.scss index 362c4e0d..847a6bf0 100644 --- a/app/(pages)/(index-page)/about-us/_components/OurTeam/OurTeam.module.scss +++ b/app/(pages)/(index-page)/about-us/_components/OurTeam/OurTeam.module.scss @@ -42,7 +42,7 @@ $bg-color: #FFFFFF; font-family: Metropolis; font-size: 16px; font-style: normal; - font-weight: 600; + font-weight: 400; line-height: 150%; /* 24px */ letter-spacing: 0.32px; } diff --git a/app/(pages)/(index-page)/about-us/_components/RegisterNow/RegisterNow.module.scss b/app/(pages)/(index-page)/about-us/_components/RegisterNow/RegisterNow.module.scss index 1d5659b8..d86ae7cf 100644 --- a/app/(pages)/(index-page)/about-us/_components/RegisterNow/RegisterNow.module.scss +++ b/app/(pages)/(index-page)/about-us/_components/RegisterNow/RegisterNow.module.scss @@ -5,7 +5,7 @@ display: flex; align-items: center; justify-content: space-between; - background: #E5EEF1; + background: linear-gradient(to bottom, #005271, #122637); height: 458px; padding: 12%; @@ -59,7 +59,7 @@ width: 28%; .text { - color: #123041; + color: #FFFFFF; font-family: Metropolis; font-size: 48px; font-style: normal; diff --git a/app/(pages)/(index-page)/about-us/_components/Sponsor/Sponsor.module.scss b/app/(pages)/(index-page)/about-us/_components/Sponsor/Sponsor.module.scss index a1f38284..cde45b63 100644 --- a/app/(pages)/(index-page)/about-us/_components/Sponsor/Sponsor.module.scss +++ b/app/(pages)/(index-page)/about-us/_components/Sponsor/Sponsor.module.scss @@ -10,7 +10,6 @@ position: relative; overflow: hidden; gap: 88px; - } .content { diff --git a/app/(pages)/_components/Navbar/Navbar.module.scss b/app/(pages)/_components/Navbar/Navbar.module.scss index ffd9fde5..bb276812 100644 --- a/app/(pages)/_components/Navbar/Navbar.module.scss +++ b/app/(pages)/_components/Navbar/Navbar.module.scss @@ -149,7 +149,10 @@ $mobile-breakpoint: 425px; width: 100%; // Extend the underline across the full width on hover/focus } - + .linkArrow { + width: 14px; + height: 14px; + } } diff --git a/app/(pages)/_components/Navbar/Navbar.tsx b/app/(pages)/_components/Navbar/Navbar.tsx index cdb5c65c..3c4cab65 100644 --- a/app/(pages)/_components/Navbar/Navbar.tsx +++ b/app/(pages)/_components/Navbar/Navbar.tsx @@ -98,7 +98,7 @@ export default function Navbar({ navLinks }: { navLinks: NavLink[] }) { /> - {navLinks.map((link) => ( + {navLinks.map((link, index) => (
  • - {link.name} + {index !== navLinks.length - 1 && link.name} + + {index === navLinks.length - 1 && ( +
    + {link.name} + link arrow +
    + )}
  • diff --git a/public/navbar/upRightArrow.png b/public/navbar/upRightArrow.png new file mode 100644 index 00000000..abf0ec0d Binary files /dev/null and b/public/navbar/upRightArrow.png differ