diff --git a/src/components/Nav.tsx b/src/components/Nav.tsx index d7d4c8c5..e80321c5 100644 --- a/src/components/Nav.tsx +++ b/src/components/Nav.tsx @@ -35,7 +35,7 @@ export default function Nav() { } const LinkCluster = () => ( -
+
Lend Borrow Liquidate @@ -43,7 +43,7 @@ const LinkCluster = () => ( ); const LinkItem = ({ to, children }: PropsWithChildren<{ to: string }>) => ( - + {children} ); diff --git a/src/pages/_borrow/BorrowPage.tsx b/src/pages/_borrow/BorrowPage.tsx index c3d7e046..57d12793 100644 --- a/src/pages/_borrow/BorrowPage.tsx +++ b/src/pages/_borrow/BorrowPage.tsx @@ -3,7 +3,7 @@ import { BorrowableAssetCard } from './BorrowableAssetCard'; const BorrowPage = () => (
-

Borrow Assets

+

Borrow Assets

{CURRENCIES.map((currency) => ( ))} diff --git a/src/pages/_borrow/BorrowableAssetCard.tsx b/src/pages/_borrow/BorrowableAssetCard.tsx index 5cb7640d..4e64b470 100644 --- a/src/pages/_borrow/BorrowableAssetCard.tsx +++ b/src/pages/_borrow/BorrowableAssetCard.tsx @@ -45,7 +45,7 @@ export const BorrowableAssetCard = ({ currency }: BorrowableAssetCardProps) => {
-

{name}

+

{name}

{symbol}
diff --git a/src/pages/_landing/LandingPage.tsx b/src/pages/_landing/LandingPage.tsx index d75d0426..387ef16c 100644 --- a/src/pages/_landing/LandingPage.tsx +++ b/src/pages/_landing/LandingPage.tsx @@ -23,10 +23,10 @@ const LandingPage = () => ( <>
-

+

A trustless loan platform focusing on single-token lending pools.

-

DeFi made simple.

+

DeFi made simple.

@@ -34,10 +34,10 @@ const LandingPage = () => (
-

+

Laina is currently in the early development stage and is only operating on the Stellar Testnet.

-

Now that you're here, take a peek.

+

Now that you're here, take a peek.

Open the app @@ -56,7 +56,7 @@ const LandingPage = () => (
-

The Team

+

The Team

{team.map((member) => ( @@ -64,7 +64,7 @@ const LandingPage = () => (
-

Got a question? Ask us in the Stellar Dev Discord!

+

Got a question? Ask us in the Stellar Dev Discord!

Join Stellar Discord diff --git a/src/pages/_lend/LendPage.tsx b/src/pages/_lend/LendPage.tsx index 012d83d9..90e58b80 100644 --- a/src/pages/_lend/LendPage.tsx +++ b/src/pages/_lend/LendPage.tsx @@ -4,7 +4,7 @@ import { LendableAssetCard } from './LendableAssetCard'; const LendPage = () => { return ( <> -

Lend Assets

+

Lend Assets

{CURRENCIES.map((currency) => ( ))} diff --git a/src/pages/_lend/LendableAssetCard.tsx b/src/pages/_lend/LendableAssetCard.tsx index 3071bbc7..63d0793e 100644 --- a/src/pages/_lend/LendableAssetCard.tsx +++ b/src/pages/_lend/LendableAssetCard.tsx @@ -136,7 +136,7 @@ export const LendableAssetCard = ({ currency }: LendableAssetCardProps) => {
-

{name}

+

{name}

{symbol}
diff --git a/src/pages/_liquidate/LiquidatePage.tsx b/src/pages/_liquidate/LiquidatePage.tsx index 1560c187..d428be20 100644 --- a/src/pages/_liquidate/LiquidatePage.tsx +++ b/src/pages/_liquidate/LiquidatePage.tsx @@ -1,6 +1,6 @@ const LiquidatePage = () => (
-

Available for Liquidation

+

Available for Liquidation

Coming soon!

);