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
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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%;

Expand Down Expand Up @@ -59,7 +59,7 @@
width: 28%;

.text {
color: #123041;
color: #FFFFFF;
font-family: Metropolis;
font-size: 48px;
font-style: normal;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
position: relative;
overflow: hidden;
gap: 88px;

}

.content {
Expand Down
5 changes: 4 additions & 1 deletion app/(pages)/_components/Navbar/Navbar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,10 @@ $mobile-breakpoint: 425px;
width: 100%; // Extend the underline across the full width on hover/focus
}


.linkArrow {
width: 14px;
height: 14px;
}
}


Expand Down
17 changes: 15 additions & 2 deletions app/(pages)/_components/Navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default function Navbar({ navLinks }: { navLinks: NavLink[] }) {
/>
</Link>
</li>
{navLinks.map((link) => (
{navLinks.map((link, index) => (
<li key={link.name} className={styles.wordsItem}>
<Link
href={link.slug}
Expand All @@ -110,7 +110,20 @@ export default function Navbar({ navLinks }: { navLinks: NavLink[] }) {
active ? styles.navLink_active : ''
}`}
>
{link.name}
{index !== navLinks.length - 1 && link.name}

{index === navLinks.length - 1 && (
<div className="tw-flex tw-gap-2">
{link.name}
<Image
src="/navbar/upRightArrow.png"
alt="link arrow"
width={14}
height={14}
className={styles.linkArrow}
/>
</div>
)}
</span>
</Link>
</li>
Expand Down
Binary file added public/navbar/upRightArrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading