diff --git a/app/globals.css b/app/globals.css index 8d44cb5..fc6563b 100644 --- a/app/globals.css +++ b/app/globals.css @@ -102,6 +102,15 @@ } } +@keyframes slide-up { + from { + transform: translateY(100%); + } + to { + transform: translateY(0); + } +} + .animate-float { animation: float 6s ease-in-out infinite; } @@ -111,6 +120,10 @@ animation-delay: 2s; } +.animate-slide-up { + animation: slide-up 0.3s ease-out forwards; +} + /* Smooth Scrolling */ html { scroll-behavior: smooth; diff --git a/app/layout.tsx b/app/layout.tsx index 820f4c0..260cf4a 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -26,7 +26,7 @@ export default function RootLayout({