This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import type { ComponentProps } from "react" | |
| import { cva, cx } from "~/utils/cva" | |
| const starsVariants = cva({ | |
| base: [ | |
| "overflow-hidden pointer-events-none select-none blur-[0.5px]", | |
| "before:absolute before:inset-0 before:bg-radial-[at_top_center] before:from-fuchsia-950/50 before:to-transparent before:to-50%", | |
| ], | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use client" | |
| import { useEffect } from "react" | |
| import { env, isDev } from "~/env" | |
| type AdGoogleProps = { | |
| adSlot: string | |
| adLayoutKey: string | |
| adFormat?: string | |
| fullWidthResponsive?: boolean |
OlderNewer