UNPKG

leumas-private-shared

Version:

Private React JSX Package For Leumas Shared Components, Headers, Footers, Asides, Login Pages, API Key Manager and much more. Styles and everything reusable to avoid DRY code across all of our subdomains

34 lines (33 loc) 961 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>AI Helper</title> <style> body { font-family: Arial, sans-serif; background-color: #2b2b2b; color: #fff; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .container { padding: 20px; border: 1px solid #444; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } </style> </head> <body> <div class="container"> <h1>Welcome to AI Helper</h1> <p>This is your personal AI interface. How can I assist you today?</p> <!-- You can add interactive components, scripts, and other elements here --> </div> </body> </html>