diff --git a/app/components/logo.tsx b/app/components/logo.tsx index d430e49..a4e2930 100644 --- a/app/components/logo.tsx +++ b/app/components/logo.tsx @@ -1,9 +1,29 @@ +'use client'; +import { Transition } from "@headlessui/react"; +import { useState } from "react"; + const Logo = () => { + + const [logoHovered, setLogoHovered] = useState( false ); + const [aboutButtonHovered, setAboutButtonHovered] = useState( false ); + return (
- - - + {/* */} + setLogoHovered(true)} + onMouseLeave={()=>setLogoHovered(false)}> + + + {/* */}
-
-
- -
-

- Start using flash cards -
- Begin with our app today. -

-

- Get questions from a multitude of different subjects that include cybersecurity, geography and C++ -

-
- - Get started - - -
+ +
+
+ +
+

+ Start using flash cards +
+ Begin with our app today. +

+

+ Get questions from a multitude of different subjects that include cybersecurity, geography and C++ +

+ +
-
+