import Image from 'next/image' import clsx from 'clsx' import phoneFrame from '@/images/phone-frame.svg' export function PhoneFrame({ className, children, priority = false, ...props }: React.ComponentPropsWithoutRef<'div'> & { priority?: boolean }) { return (
{children}
) }