AI Builder

Live System Active
import React from 'react';

export default function App() {
  return (
    <div className="h-screen flex flex-col items-center justify-center bg-gray-950 text-white font-sans text-center px-4">
      <div className="w-16 h-16 bg-blue-600/20 rounded-2xl flex items-center justify-center mb-6 border border-blue-500/30">
        <div className="w-8 h-8 bg-blue-500 rounded-lg animate-pulse" />
      </div>
      <h1 className="text-5xl font-bold bg-gradient-to-r from-blue-400 to-purple-600 bg-clip-text text-transparent">
        Dream it. Build it.
      </h1>
      <p className="mt-4 text-gray-400 text-lg max-w-md">Describe your application vision in the chat to generate a live preview.</p>
    </div>
  );
}