diff --git a/frontend/public/gnosisguild.png b/frontend/public/gnosisguild.png
new file mode 100644
index 0000000..f9f258d
Binary files /dev/null and b/frontend/public/gnosisguild.png differ
diff --git a/frontend/src/routes/Landing.module.css b/frontend/src/routes/Landing.module.css
new file mode 100644
index 0000000..c74cdd9
--- /dev/null
+++ b/frontend/src/routes/Landing.module.css
@@ -0,0 +1,28 @@
+.footer {
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ padding: 20px;
+}
+
+.gg {
+ color: var(--text-color);
+ display: flex;
+ align-items: center;
+ justify-content: left;
+ gap: 10px;
+ background-color: var(--box-bg);
+ border-radius: 20px;
+ padding: 3px 8px 3px 3px;
+ text-decoration: none;
+ border: 2px solid transparent;
+ font-size: 12px;
+}
+
+.gg:hover {
+ border: 2px solid var(--button-border);
+ filter: brightness(1.2);
+}
+
+.logo {
+}
diff --git a/frontend/src/routes/Landing.tsx b/frontend/src/routes/Landing.tsx
index 026c1e7..dea81f7 100644
--- a/frontend/src/routes/Landing.tsx
+++ b/frontend/src/routes/Landing.tsx
@@ -2,11 +2,32 @@ import React from "react"
import Layout from "../components/Layout"
import LandingCard from "../components/LandingCard"
+import classes from "./Landing.module.css"
+
const Landing: React.FC = () => {
return (
-
-
-
+ <>
+
+
+
+
+ >
)
}
export default Landing