diff --git a/app/components/logo.tsx b/app/components/logo.tsx new file mode 100644 index 0000000..c3469ed --- /dev/null +++ b/app/components/logo.tsx @@ -0,0 +1,11 @@ +const Logo = () => { + return ( +
+ + + +
+ ) +} + +export default Logo; \ No newline at end of file diff --git a/app/sessionconfig/page.tsx b/app/sessionconfig/page.tsx index 8d5d004..6e29fc9 100644 --- a/app/sessionconfig/page.tsx +++ b/app/sessionconfig/page.tsx @@ -1,5 +1,6 @@ import { CheckIcon } from '@heroicons/react/20/solid' import TopicCard from '../components/topic_card' +import Logo from '../components/logo'; const includedFeatures = [ 'Private forum access', @@ -13,26 +14,12 @@ export default function Example() { const cards = [ ["Learn cybersecurity", "Learning cybersecurity is like becoming a guardian of the digital realm.\nIt's about mastering the art of protecting information, systems, and networks from cyber threats.\nFrom understanding encryption algorithms to detecting malware, every lesson equips you with tools to fortify against cyber-attacks.", "/learn/cybersec" ], ["Learn geography", "It's cool ig", "/learn/geography"], - ["Learn C++", "Don't.", "/learn/cpp"], - ["Learn C", "Do.", "/learn/c"] + ["Learn C++", "Don't.", "/learn/cpp"] ]; return ( -
-