Nortinia Chat Widget Demo

Integration Example

Method 1: Script Tag

<script src="https://your-domain.com/widget-loader.js"></script>
<script>
  NortiniaChat.init({
    apiKey: 'your-api-key-here',
    position: 'bottom-right',
    theme: 'light',
    primaryColor: '#4f46e5',
    title: 'Chat Support',
    visitorName: 'John Doe',
    visitorEmail: 'john@example.com'
  });
</script>

Method 2: Auto-init

<script>
  window.NortiniaChatConfig = {
    apiKey: 'your-api-key-here',
    position: 'bottom-right',
    theme: 'light',
    visitorName: 'John Doe',
    visitorEmail: 'john@example.com'
  };
</script>
<script src="https://your-domain.com/widget-loader.js"></script>

Configuration Options

OptionTypeDefaultDescription
apiKeystringrequiredYour API key for authentication
positionstringbottom-rightWidget position: bottom-right or bottom-left
themestringlightTheme: light or dark
primaryColorstring#4f46e5Primary color in hex format
titlestringAI Chat SupportWidget header title
visitorNamestringoptionalVisitor's name for authenticated users
visitorEmailstringoptionalVisitor's email for authenticated users

Note: The widget is loaded in this page. Look for the chat icon in the bottom-right corner!