From ab33a3b1523fb6709e3e4970a92a7d8b17af2018 Mon Sep 17 00:00:00 2001 From: leandroalves Date: Mon, 26 Aug 2024 11:57:14 +0200 Subject: [PATCH] Link to documentation --- src/App/pages/home/index.js | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/src/App/pages/home/index.js b/src/App/pages/home/index.js index 9f5fa4c..3df56db 100644 --- a/src/App/pages/home/index.js +++ b/src/App/pages/home/index.js @@ -1,7 +1,8 @@ import React from 'react'; -import { Anchor, Container, Group, Space } from '@mantine/core'; +import { Container, Group, Space } from '@mantine/core'; import { SearchInput } from 'App/pages/search/search-input/index.js'; import { Icon } from 'App/components/index.js'; +import { Link } from 'App/libs/router/index.js'; export function Home() { return ( @@ -13,19 +14,12 @@ export function Home() { - {/* eslint-disable-next-line no-undef */} -
- - - - Browse documentation - - -
+ + + + Browse documentation + + ); }