From 9c21615e2ba6c00d218e062c85849cd19e818b57 Mon Sep 17 00:00:00 2001 From: Bahugunajii Date: Mon, 18 Dec 2023 20:52:19 +0530 Subject: [PATCH] show test planner --- app/page.tsx | 7 ++++++- components/BottomNavigationBar.tsx | 2 +- next.config.js | 18 +++++++++--------- 3 files changed, 16 insertions(+), 11 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 2e8a0c2..ebabfe3 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -185,11 +185,16 @@ export default function Home() { ))} ) : ( -

+

Good Job! There are no more pending tests today.

)} +
+ + Click on the link to see all upcoming Tests + +
)} {/* ) : ( diff --git a/components/BottomNavigationBar.tsx b/components/BottomNavigationBar.tsx index ed7af0a..3de86a2 100644 --- a/components/BottomNavigationBar.tsx +++ b/components/BottomNavigationBar.tsx @@ -24,7 +24,7 @@ const BottomNavigationBar = () => { )} Library - + Avanti Logo Home diff --git a/next.config.js b/next.config.js index dcf9a93..7a1ee98 100644 --- a/next.config.js +++ b/next.config.js @@ -4,15 +4,15 @@ const nextConfig = { serverActions: true, }, - async redirects() { - return [ - { - source: '/', - destination: '/library', - permanent: false, - } - ]; - } + // async redirects() { + // return [ + // { + // source: '/', + // destination: '/library', + // permanent: false, + // } + // ]; + // } }; module.exports = nextConfig;