Skip to content

Commit

Permalink
chore: update tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
martines3000 committed Dec 3, 2024
1 parent a27d556 commit cd4b4fe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion apps/frontend/src/components/Navbar/Points.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const Points = () => {
className="flex flex-col gap-y-2 items-center w-[258px] px-[24px]"
>
<div className="flex flex-col gap-y-2 items-center border border-white/10 w-full p-2 rounded-xl">
<div className="text-primary">Swaypoints</div>
<div className="text-primary">SwayPoints</div>
<div className={cn('text-lavender font-semibold')}>
{isConnected ? (user ? user.points : '0') : 'Connect Wallet'}
</div>
Expand Down
6 changes: 3 additions & 3 deletions apps/frontend/src/components/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ export const Navbar = ({ mobile = false }: { mobile?: boolean }) => {

return (
<>
<div className="w-full text-center bg-primary font-medium text-md text-primary-foreground py-2 px-4">
Start earning Fuel Activity Points by Lending and Borrowing!
<div className="w-full text-center bg-purple font-medium text-md text-lavender py-2 px-4">
SwayPoints are live! Start earning points now.
<a
href="https://app.fuel.network/earn-points"
href="https://docs.swaylend.com/swaypoints"
target="_blank"
rel="noreferrer"
className="underline ml-1"
Expand Down
12 changes: 6 additions & 6 deletions apps/frontend/src/components/PointIcons/PointsTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ export const POINTS_COLLATERAL: Point[] = [
},
{
id: '3',
name: 'Swaypoints',
name: 'SwayPoints',
description: (
<div className="text-md">
Supply this asset as collateral to earn 1 Swaypoint per dollar value.
Supply this asset as collateral to earn 1 SwayPoints per dollar value.
</div>
),
icon: SYMBOL_TO_ICON.SWAY,
Expand Down Expand Up @@ -98,11 +98,11 @@ export const POINTS_BORROW: Point[] = [
},
{
id: '2',
name: 'Swaypoints',
name: 'SwayPoints',
description: (
<div className="text-md">
By Borrowing USDC on Swaylend you get a{' '}
<span className="text-primary">5x</span> Swaypoints Multiplier.
<span className="text-primary">5x</span> SwayPoints Multiplier.
</div>
),
icon: SYMBOL_TO_ICON.SWAY,
Expand Down Expand Up @@ -145,11 +145,11 @@ export const POINTS_LEND: Point[] = [
},
{
id: '2',
name: 'Swaypoints',
name: 'SwayPoints',
description: (
<div className="text-md">
By Lending USDC on Swaylend you get a{' '}
<span className="text-primary">3x</span> Swaypoints Multiplier.
<span className="text-primary">3x</span> SwayPoints Multiplier.
</div>
),
icon: SYMBOL_TO_ICON.SWAY,
Expand Down

0 comments on commit cd4b4fe

Please sign in to comment.