-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
34 lines (31 loc) · 1.01 KB
/
App.tsx
File metadata and controls
34 lines (31 loc) · 1.01 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
31
32
33
34
import React from 'react';
import { BackgroundScene } from './components/Three/BackgroundScene';
import { Header } from './components/Sections/Header';
import { Hero } from './components/Sections/Hero';
import { Features } from './components/Sections/Features';
import { Pricing } from './components/Sections/Pricing';
import { FAQ } from './components/Sections/FAQ';
import { Footer } from './components/Sections/Footer';
import { LanguageProvider } from './contexts/LanguageContext';
function App() {
return (
<LanguageProvider>
<div className="relative min-h-screen font-sans selection:bg-brand-200 selection:text-brand-900">
{/* 3D Background Layer */}
<BackgroundScene />
{/* Content Layer */}
<div className="relative z-10">
<Header />
<main>
<Hero />
<Features />
<Pricing />
<FAQ />
</main>
<Footer />
</div>
</div>
</LanguageProvider>
);
}
export default App;