New
+ )
+}
diff --git a/src/app/(routes)/blog/not-found.tsx b/src/app/(routes)/blog/not-found.tsx
deleted file mode 100644
index ff835f9..0000000
--- a/src/app/(routes)/blog/not-found.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-import Image from "next/image";
-import Link from "next/link";
-
-export default function NotFound() {
- const imageUrl = `/images/404/${Math.floor(Math.random() * 5) + 1}.jpg`;
- return (
-
-
-
Not Found
-
Could not find requested resource
-
- Return Home
-
-
- );
-}
diff --git a/src/app/globals.css b/src/app/globals.css
index 79cbfad..5f45921 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -286,3 +286,28 @@ html {
.center-center {
@apply items-center justify-center;
}
+
+.teste {
+ -webkit-mask-image: linear-gradient(
+ to top,
+ transparent,
+ white 20%,
+ white 80%,
+ transparent
+ ),
+ linear-gradient(to bottom, transparent, white 10%, white 90%, transparent),
+ linear-gradient(to left, transparent, white 10%, white 90%, transparent),
+ linear-gradient(to right, transparent, white 10%, white 90%, transparent);
+ mask-image: linear-gradient(
+ to top,
+ transparent,
+ white 20%,
+ white 90%,
+ transparent
+ ),
+ linear-gradient(to bottom, transparent, white 10%, white 90%, transparent),
+ linear-gradient(to left, transparent, white 10%, white 90%, transparent),
+ linear-gradient(to right, transparent, white 10%, white 90%, transparent);
+ mask-composite: intersect;
+ -webkit-mask-composite: destination-in;
+}