diff --git a/leaky-ships/components/Logo.tsx b/leaky-ships/components/Logo.tsx index a56afad..93a2047 100644 --- a/leaky-ships/components/Logo.tsx +++ b/leaky-ships/components/Logo.tsx @@ -1,15 +1,45 @@ +import classNames from "classnames" import React from "react" function Logo() { return ( -
-
-

- Leaky -
- Ships -

-
+
+

+ Leaky +
+ Ships +

+ +
+ ) +} + +function Screws() { + return ( + <> + + + + + + ) +} + +function Screw({ + orientation, + rotation, +}: { + orientation: string + rotation: string +}) { + return ( +
+
) } diff --git a/leaky-ships/public/assets/shield.png b/leaky-ships/public/assets/shield.png deleted file mode 100644 index 5f513fd..0000000 Binary files a/leaky-ships/public/assets/shield.png and /dev/null differ