File size: 492 Bytes
3b58275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import ChatWindow from "./components/ChatWindow";
import "./index.css";

export default function App() {
  return (
    <div className="app-container">

      <header className="header">

        <img src="/logo.png" alt="Logo" className="logo" />

        <h2>Flyline HR Assistant ✈️</h2>

      </header>



      <ChatWindow />



      <footer className="footer">

        © 2025 Flyline Airlines · HR AI Assistant · AIML Oct 2024 Batch

      </footer>

    </div>
  );
}