diff --git a/package.json b/package.json index 3c283c0c..808acea6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sanitypress", - "version": "4.10.3", + "version": "4.10.4", "description": "A Next.js + Sanity.io Starter Template", "author": "nuotsu (https://nuotsu.dev)", "license": "ISC", diff --git a/src/ui/modules/Hero.module.css b/src/ui/modules/Hero.module.css deleted file mode 100644 index 94c191d9..00000000 --- a/src/ui/modules/Hero.module.css +++ /dev/null @@ -1,9 +0,0 @@ -.txt::before { - content: ''; - position: absolute; - inset: -50%; - z-index: -1; - mask-image: radial-gradient(ellipse at center, black 25%, transparent 50%); - - @apply backdrop-brightness-75; -} diff --git a/src/ui/modules/Hero.tsx b/src/ui/modules/Hero.tsx index 823fecbc..3db69e64 100644 --- a/src/ui/modules/Hero.tsx +++ b/src/ui/modules/Hero.tsx @@ -4,7 +4,6 @@ import CTAList from '@/ui/CTAList' import Pretitle from '@/ui/Pretitle' import Reputation from '@/ui/Reputation' import { cn } from '@/lib/utils' -import css from './Hero.module.css' export default function Hero({ pretitle, @@ -50,7 +49,6 @@ export default function Hero({ className={cn( 'richtext relative isolate max-w-xl [&_:is(h1,h2)]:text-balance', hasImage && 'text-shadow', - hasImage && css.txt, { 'mb-8': stegaClean(alignItems) === 'start', 'my-auto': stegaClean(alignItems) === 'center',