File size: 604 Bytes
b28041c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

import { Navbar } from './components/Navbar';
import { Hero } from './components/Hero';
import { InteractionLab } from './components/InteractionLab';

function App() {
  return (
    <div className="min-h-screen bg-slate-950 bg-[radial-gradient(circle_at_center,_#1e293b_1px,_transparent_1px)] bg-[size:40px_40px]">
      <Navbar />
      <Hero />
      <InteractionLab />

      <footer className="py-12 border-t border-slate-900 text-center text-slate-600 text-sm">
        © 2025 UPIF Security Labs. Deterministic Governance for Generative AI.
      </footer>
    </div>
  );
}

export default App;