'use client'; import { memo } from 'react'; import Link from 'next/link'; import { User } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; interface GuestNameGateProps { guestName: string; setGuestName: (value: string) => void; onConfirm: () => void; } export const GuestNameGate = memo(function GuestNameGate({ guestName, setGuestName, onConfirm, }: GuestNameGateProps) { return (
Enter your name to view and comment on this video
Or{' '} sign in {' '} for a full account