Components Chat Window Chat Window Component

Chat Window Component

A simple chat window component designed in Material Design style with a dark theme and responsive layout suitable for social media interfaces.

Preview

HTML Code

<div class="h-screen bg-gray-100 dark:bg-gray-800 flex flex-col justify-end">
    <div class="max-w-md w-full bg-white dark:bg-gray-900 rounded-lg shadow-lg p-4">
        <div class="flex flex-col space-y-4 overflow-y-scroll h-80">
            <div class="flex items-start space-x-2">
                <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="User Avatar" class="w-8 h-8 rounded-full">
                <div class="bg-blue-500 text-white p-2 rounded-lg rounded-bl-none">
                    Hello, how are you?
                </div>
            </div>
            <div class="flex items-start space-x-2">
                <img src="https://randomuser.me/api/portraits/women/32.jpg" alt="User Avatar" class="w-8 h-8 rounded-full">
                <div class="bg-gray-300 text-gray-800 p-2 rounded-lg rounded-br-none">
                    I'm good, thanks! How about you?
                </div>
            </div>
            <div class="flex items-start space-x-2">
                <img src="https://randomuser.me/api/portraits/men/33.jpg" alt="User Avatar" class="w-8 h-8 rounded-full">
                <div class="bg-blue-500 text-white p-2 rounded-lg rounded-bl-none">
                    I'm doing well! Ready for the weekend?
                </div>
            </div>
        </div>
        <div class="mt-4 flex">
            <input type="text" placeholder="Type your message..." class="flex-1 bg-gray-200 dark:bg-gray-700 text-gray-900 dark:text-white rounded-lg p-2 focus:outline-none focus:ring focus:ring-blue-500">
            <button class="bg-blue-500 text-white p-2 rounded-lg ml-2 focus:outline-none">Send</button>
        </div>
    </div>
</div>

Related Components

Chat Window Component

A neumorphic chat window component designed for e-commerce applications, featuring a dark mode and responsive design using Tailwind CSS.

Open

Chat Window Component with 3D Design, Responsiveness, and Dark Mode

A responsive chat window component with 3D design elements and dark theme support using Tailwind CSS. Includes placeholder avatars and images.

Open

Chat Window Component

A complex, triadic-colored, and microinteraction-focused chat window component suitable for real estate platforms. It features a conversation list, an active chat area with message bubbles, and interactive input field, all fully responsive and with dark mode support.

Open