diff --git a/package.json b/package.json index c96dc2b..d714130 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "Skedge", "displayName": "Skedge", - "version": "2.2.2", + "version": "2.2.3", "description": "your registration assistant by students, for students", "author": "Nebula Labs", "packageManager": "npm@8.19.2", diff --git a/src/components/Landing.tsx b/src/components/Landing.tsx index 8acc422..661ee6b 100644 --- a/src/components/Landing.tsx +++ b/src/components/Landing.tsx @@ -6,6 +6,7 @@ import tutorial1 from 'data-base64:../../assets/tutorial1.png'; import tutorial2 from 'data-base64:../../assets/tutorial2.png'; import React, { useEffect, useState } from 'react'; +import NebulaLogo from '~components/NebulaLogo'; import { TRENDS_URL } from '~data/config'; const STORAGE_KEY = 'page'; @@ -97,15 +98,17 @@ const Landing = () => { className="absolute h-full w-full inset-0 object-cover -z-10" />
-

- POWERED BY{' '} +

+ POWERED BY + {/*eslint-disable-next-line react/jsx-no-target-blank*/} - NEBULA LABS + + NEBULA LABS

diff --git a/src/components/NebulaLogo.tsx b/src/components/NebulaLogo.tsx new file mode 100644 index 0000000..9e8ea30 --- /dev/null +++ b/src/components/NebulaLogo.tsx @@ -0,0 +1,31 @@ +import React from 'react'; + +interface Props { + className?: string; +} + +export default function NebulaLogo(props: Props) { + return ( + + + + + + + + + + + + + + + + + ); +} diff --git a/src/components/TopMenu.tsx b/src/components/TopMenu.tsx index efba800..62d0542 100644 --- a/src/components/TopMenu.tsx +++ b/src/components/TopMenu.tsx @@ -1,6 +1,7 @@ import gradient from 'data-base64:../../assets/gradient.png'; import React from 'react'; +import NebulaLogo from '~components/NebulaLogo'; import { TRENDS_URL } from '~data/config'; /** @@ -9,24 +10,27 @@ import { TRENDS_URL } from '~data/config'; */ export function TopMenu() { return ( -
+
gradient background -

SKEDGE

-

- FROM{' '} - - UTD TRENDS - -

+ +
+

SKEDGE

+

+ FROM{' '} + + UTD TRENDS + +

+
); }