diff --git a/site/docs/components/landing/NavigationList.tsx b/site/docs/components/landing/NavigationList.tsx index 188a62d360..343b9b301d 100644 --- a/site/docs/components/landing/NavigationList.tsx +++ b/site/docs/components/landing/NavigationList.tsx @@ -1,112 +1,9 @@ -const identitySvg = ( - - Identity SVG - - -); - -const walletSvg = ( - - Wallet SVG - - - -); - -const tokensSvg = ( - - Tokens SVG - - - -); - -const swapSvg = ( - - Swap SVG - - - -); - -const frameSvg = ( - - Frame SVG - - - - -); +import { frameSvg } from '../svg/frameSvg.tsx'; +import { identitySvg } from '../svg/identitySvg.tsx'; +import { swapSvg } from '../svg/swapSvg.tsx'; +import { tokensSvg } from '../svg/tokensSvg.tsx'; +import { transactionSvg } from '../svg/transactionSvg.tsx'; +import { walletSvg } from '../svg/walletSvg.tsx'; const navItems = [ { @@ -129,6 +26,11 @@ const navItems = [ svg: swapSvg, label: 'Swap', }, + { + href: '#transaction', + svg: transactionSvg, + label: 'Transaction', + }, { href: '#frame', svg: frameSvg, @@ -138,18 +40,18 @@ const navItems = [ export default function NavigationList() { return ( -