From b389d720fe92cf7587066279878262849694a5b6 Mon Sep 17 00:00:00 2001 From: Darius Schefer Date: Sun, 31 Aug 2025 01:07:43 +0200 Subject: [PATCH] Amogus --- src/components/Dashboard/Dashboard.tsx | 4 +++- src/components/Dashboard/style.module.css | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/src/components/Dashboard/Dashboard.tsx b/src/components/Dashboard/Dashboard.tsx index 11494f7..b2e9946 100644 --- a/src/components/Dashboard/Dashboard.tsx +++ b/src/components/Dashboard/Dashboard.tsx @@ -12,6 +12,7 @@ import Terminal from "@/components/Terminal/Terminal"; import Timetable from "@/components/Timetable/Timetable"; import Weather from "@/components/Weather/Weather"; +import amogus from "/img/amogus.png"; import style from "./style.module.css"; export default function Dashboard() { @@ -41,7 +42,8 @@ export default function Dashboard() { }, []); return ( -
+
+
Amogus
diff --git a/src/components/Dashboard/style.module.css b/src/components/Dashboard/style.module.css index fe94495..98139d6 100644 --- a/src/components/Dashboard/style.module.css +++ b/src/components/Dashboard/style.module.css @@ -25,3 +25,23 @@ .night { background-color: #2a3f55; } + +.amogus { + z-index: 100; + position: absolute; + scale: 60%; + animation: + x 10s linear infinite alternate, + y 7s linear infinite alternate; + +} + +@keyframes x { + from { left: 0; } + to { left: calc(100vw - 70px); } +} + +@keyframes y { + from { top: 0; } + to { top: calc(100vh - 90px); } +}