// Basic usage example
import React from 'react';
import { InovaiWidget } from '@inov-ai/feedback-widget';

export default function BasicExample() {
  return (
    <div>
      <h1>My Application</h1>
      <p>This is a basic example of the feedback widget.</p>
      
      {/* Basic feedback widget with minimal configuration */}
      <InovaiWidget
        siteKey="demo-site-key"
        primaryColor="#f97316"
        position="bottom-right"
      />
    </div>
  );
}
