-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
30 lines (27 loc) · 1.06 KB
/
App.tsx
File metadata and controls
30 lines (27 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import React from 'react';
import { Navbar } from './components/Navbar';
import { Hero } from './components/Hero';
import { Features } from './components/Features';
import { Languages } from './components/Languages';
import { Footer } from './components/Footer';
const App: React.FC = () => {
return (
<div className="min-h-screen bg-[#020617] relative overflow-hidden text-slate-200 font-sans selection:bg-magic-secondary selection:text-white">
{/* Background Ambience */}
<div className="fixed inset-0 z-0 pointer-events-none">
<div className="absolute top-0 left-1/4 w-96 h-96 bg-magic-primary/20 rounded-full blur-[128px] animate-pulse-glow" />
<div className="absolute bottom-0 right-1/4 w-[500px] h-[500px] bg-magic-secondary/10 rounded-full blur-[128px]" />
</div>
<div className="relative z-10 flex flex-col min-h-screen">
<Navbar />
<main className="flex-grow">
<Hero />
<Features />
<Languages />
</main>
<Footer />
</div>
</div>
);
};
export default App;