diff --git a/apps/public/components/Swirls.tsx b/apps/public/components/Swirls.tsx index 7ad8ae5b..a3324b86 100644 --- a/apps/public/components/Swirls.tsx +++ b/apps/public/components/Swirls.tsx @@ -1,152 +1,36 @@ import { cn } from '@/lib/utils'; +import Image, { type ImageProps } from 'next/image'; -interface SwirlProps extends React.SVGProps { - className?: string; -} +type SwirlProps = Omit; export function SingleSwirl({ className, ...props }: SwirlProps) { return ( - - - - - - - - - - - - - - - - - - - - + src="/swirl-2.png" + alt="Swirl" + className={cn( + 'pointer-events-none w-full h-full object-cover', + className, + )} + width={1200} + height={1200} + /> ); } export function DoubleSwirl({ className, ...props }: SwirlProps) { return ( - - - - - - - - - - - - - - - - - - - - + src="/swirl.png" + alt="Swirl" + className={cn( + 'pointer-events-none w-full h-full object-cover', + className, + )} + width={1200} + height={1200} + /> ); } diff --git a/apps/public/components/footer.tsx b/apps/public/components/footer.tsx index 48acf59c..7f751f95 100644 --- a/apps/public/components/footer.tsx +++ b/apps/public/components/footer.tsx @@ -12,7 +12,7 @@ export function Footer() {
- +
Discover User Insights} diff --git a/apps/public/components/sections/pricing.tsx b/apps/public/components/sections/pricing.tsx index 9c6f7d91..8678ece0 100644 --- a/apps/public/components/sections/pricing.tsx +++ b/apps/public/components/sections/pricing.tsx @@ -10,7 +10,7 @@ export default Pricing; export function Pricing() { return (
- +