Skip to content

Commit

Permalink
bug solved
Browse files Browse the repository at this point in the history
  • Loading branch information
unaisdev committed May 13, 2023
1 parent ae1fc39 commit aedf3c5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 31 deletions.
2 changes: 1 addition & 1 deletion app/inicio/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function RootLayout({
children: React.ReactNode
}) {
return (
<html lang="en">
<html suppressHydrationWarning lang="en">
<head>
<meta name="robots" content="index,nofollow" />
<meta name="google-site-verification" content="0jKL_akBj_t9Rc5IGgQay1JtRG2uYXsKnjJ3TSqel3o" />
Expand Down
30 changes: 0 additions & 30 deletions components/AboutMe/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit aedf3c5

Please sign in to comment.