'use client' import { RefObject } from 'react' interface LivePreviewPanelProps { activeTab: string iframeRef: RefObject } export default function LivePreviewPanel({ activeTab, iframeRef }: LivePreviewPanelProps) { return (
{/* Preview Header */}
localhost:3000
{activeTab === 'hero' && 'Hero Section'} {activeTab === 'features' && 'Features'} {activeTab === 'faq' && 'FAQ'} {activeTab === 'pricing' && 'Pricing'} {activeTab === 'other' && 'Trust & Testimonial'}
{/* Preview Frame */}