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