diff --git a/packages/nextjs/app/layout.tsx b/packages/nextjs/app/layout.tsx index dcb8c7f..16980e2 100644 --- a/packages/nextjs/app/layout.tsx +++ b/packages/nextjs/app/layout.tsx @@ -9,7 +9,7 @@ const baseUrl = process.env.VERCEL_URL : `http://localhost:${process.env.PORT || 3000}`; const imageUrl = `${baseUrl}/thumbnail.jpg`; -const title = "Open Data Library "; +const title = "Adafel Demo Dashboard"; const titleTemplate = "%s | Adafel"; const description = "Built by Adafel"; diff --git a/packages/nextjs/app/page.tsx b/packages/nextjs/app/page.tsx index 3f6f238..ae8b883 100644 --- a/packages/nextjs/app/page.tsx +++ b/packages/nextjs/app/page.tsx @@ -81,7 +81,7 @@ const Home: NextPage = () => {

- Open Data Library (ODL) + Adafel Demo Dashboard

diff --git a/packages/nextjs/components/Header.tsx b/packages/nextjs/components/Header.tsx index cac411c..41a2f6b 100644 --- a/packages/nextjs/components/Header.tsx +++ b/packages/nextjs/components/Header.tsx @@ -76,47 +76,52 @@ export const Header = () => { ); return ( -
-
-
- - {isDrawerOpen && ( -
    +
    + This is our pre-alpha demo release. Please join our Discord for more information. +
    +
    +
    +
    +
- )} -
- -
- SE2 logo -
-
- Adafel - Deterministic ML Layer of Web3 + + + {isDrawerOpen && ( +
    { + setIsDrawerOpen(false); + }} + > + +
+ )}
- -
    - -
-
-
- - {/* */} + +
+ SE2 logo +
+
+ Adafel + Deterministic ML Layer of Web3 +
+ +
    + +
+
+
+ + {/* */} +
-
+ ); };