diff --git a/apps/frontend/src/components/InfoIcon/index.tsx b/apps/frontend/src/components/InfoIcon/index.tsx index 0313e8b3..f5bf7504 100644 --- a/apps/frontend/src/components/InfoIcon/index.tsx +++ b/apps/frontend/src/components/InfoIcon/index.tsx @@ -7,7 +7,7 @@ import { TooltipTrigger, } from '@/components/ui/tooltip'; import { Info } from 'lucide-react'; -import { ReactNode } from 'react'; +import type { ReactNode } from 'react'; export const InfoIcon = ({ text }: { text: ReactNode }) => { return ( diff --git a/apps/frontend/src/components/Navbar/Points.tsx b/apps/frontend/src/components/Navbar/Points.tsx index 129db120..87a5a2b1 100644 --- a/apps/frontend/src/components/Navbar/Points.tsx +++ b/apps/frontend/src/components/Navbar/Points.tsx @@ -53,6 +53,34 @@ export const Points = () => { Points Leaderboard + +
+
Fuel Rewards
+
+ Season 1 - Part 1 +
+
+ Calculating +
+
+
+
+ Disclaimer: Fuel Rewards will + be visible after the distribution: +
+
+
+
+ - After Day 30: Initial + distribution of rewards. +
+
+ - End of Day 45: Final + distribution of rewards. +
+
+
+
); diff --git a/apps/frontend/src/components/NetBorrowTooltip/index.tsx b/apps/frontend/src/components/NetBorrowTooltip/index.tsx index 4f90fd67..acf1fac4 100644 --- a/apps/frontend/src/components/NetBorrowTooltip/index.tsx +++ b/apps/frontend/src/components/NetBorrowTooltip/index.tsx @@ -1,4 +1,4 @@ -import BigNumber from 'bignumber.js'; +import type BigNumber from 'bignumber.js'; import { Line } from '../Line'; type NetBorrowTooltipProps = { @@ -16,7 +16,7 @@ type NetBorrowTooltipProps = { export const NetBorrowTooltip = ({ aprData }: NetBorrowTooltipProps) => { return ( -
+
Net Borrow APY
@@ -38,6 +38,10 @@ export const NetBorrowTooltip = ({ aprData }: NetBorrowTooltipProps) => {
Net Borrow APY
{aprData?.netBorrowApr.times(100).toFixed(2)}%
+
+ A negative Net Borrow APY means you are earning interest on your + borrowed funds. +
); }; diff --git a/apps/frontend/src/components/NetEarnTooltip/index.tsx b/apps/frontend/src/components/NetEarnTooltip/index.tsx index 48e74015..e7baf10b 100644 --- a/apps/frontend/src/components/NetEarnTooltip/index.tsx +++ b/apps/frontend/src/components/NetEarnTooltip/index.tsx @@ -1,4 +1,4 @@ -import BigNumber from 'bignumber.js'; +import type BigNumber from 'bignumber.js'; import { Line } from '../Line'; type NetEarnTooltipProps = { diff --git a/apps/frontend/src/components/PointIcons/index.tsx b/apps/frontend/src/components/PointIcons/index.tsx index 1648caff..9c59724b 100644 --- a/apps/frontend/src/components/PointIcons/index.tsx +++ b/apps/frontend/src/components/PointIcons/index.tsx @@ -1,7 +1,7 @@ import clsx from 'clsx'; import type { StaticImport } from 'next/dist/shared/lib/get-img-props'; import Image from 'next/image'; -import { ReactNode } from 'react'; +import type { ReactNode } from 'react'; import { Tooltip, TooltipContent,