diff --git a/app/inicio/layout.tsx b/app/inicio/layout.tsx index a210107..8619b7f 100644 --- a/app/inicio/layout.tsx +++ b/app/inicio/layout.tsx @@ -15,7 +15,7 @@ export default function RootLayout({ children: React.ReactNode }) { return ( - + diff --git a/components/AboutMe/styles.css b/components/AboutMe/styles.css index a8f0077..808d902 100644 --- a/components/AboutMe/styles.css +++ b/components/AboutMe/styles.css @@ -7,33 +7,3 @@ border-radius: 4px; white-space: pre-line; } - -@keyframes enter-from-left { - 0% { - transform: translateX(-100%); - opacity: 0; - } - 100% { - transform: translateX(0); - opacity: 1; - } -} - -@keyframes enter-from-right { - 0% { - transform: translateX(100%); - opacity: 0; - } - 100% { - transform: translateX(0); - opacity: 1; - } -} - -.animate-enter-from-left { - animation: enter-from-left 2s forwards; -} - -.animate-enter-from-right { - animation: enter-from-right 2s forwards; -}