diff --git a/public/images/logo-small.svg b/public/images/logo-small.svg
new file mode 100644
index 0000000..af5e4f3
--- /dev/null
+++ b/public/images/logo-small.svg
@@ -0,0 +1,13 @@
+
diff --git a/public/images/logo_left.png b/public/images/logo_left.png
new file mode 100644
index 0000000..a8959bf
Binary files /dev/null and b/public/images/logo_left.png differ
diff --git a/public/images/logo_right.png b/public/images/logo_right.png
new file mode 100644
index 0000000..60290bb
Binary files /dev/null and b/public/images/logo_right.png differ
diff --git a/src/app/globals.css b/src/app/globals.css
index 763ec05..2c7a482 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -127,3 +127,29 @@ tbody tr {
.overflowX::-webkit-scrollbar {
display: none;
}
+
+@keyframes slideDown {
+ from {
+ transform: translateY(-100%);
+ }
+ to {
+ transform: translateY(0);
+ }
+}
+
+@keyframes slideUp {
+ from {
+ transform: translateY(100%);
+ }
+ to {
+ transform: translateY(0);
+ }
+}
+
+.animate-slide-down {
+ animation: slideDown 1s ease-out forwards;
+}
+
+.animate-slide-up {
+ animation: slideUp 1s ease-out forwards;
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 98d39a3..98ab4b9 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -12,6 +12,7 @@ import { ReactQueryDevtools } from '@tanstack/react-query-devtools'
import QueryProvider from "@/config/QueryProvider";
import ToastContainer from "@/components/Toast";
+// import Splash from "@/components/Splash";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -51,7 +52,7 @@ export default function RootLayout({
{/* */}
-
+ {/* */}