diff --git a/frontend/app/package.json b/frontend/app/package.json index 3cbefac1..1c474975 100644 --- a/frontend/app/package.json +++ b/frontend/app/package.json @@ -19,7 +19,6 @@ "@react-spring/web": "^9.7.3", "@tanstack/react-query": "^5.31.0", "dnum": "^2.11.0", - "focus-trap-react": "^10.2.3", "geist": "^1.3.0", "next": "14.2.2", "react": "^18", diff --git a/frontend/app/src/app/page.tsx b/frontend/app/src/app/page.tsx index d2ec97a2..0a47b033 100644 --- a/frontend/app/src/app/page.tsx +++ b/frontend/app/src/app/page.tsx @@ -1,7 +1,8 @@ "use client"; -import { AppLauncher } from "@/src/comps/AppLauncher/AppLauncher"; import { css } from "@/styled-system/css"; +import { Button } from "@liquity2/uikit"; +import Link from "next/link"; export default function Home() { return ( @@ -9,11 +10,30 @@ export default function Home() { className={css({ display: "flex", alignItems: "center", + justifyContent: "center", + gap: 16, width: "100%", height: "100%", })} > - + {([ + ["/contracts", true], + ["/earn", true], + ["/borrow", false], + ] as const).map(([path, enabled]) => ( + +