-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
31 lines (29 loc) · 994 Bytes
/
App.tsx
File metadata and controls
31 lines (29 loc) · 994 Bytes
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
import React from 'react';
import { ThemeProvider } from './components/ThemeContext';
import Header from './components/Header';
import Hero from './components/Hero';
import ImportanceSection from './components/ImportanceSection';
import StructureSection from './components/StructureSection';
import ModelComparison from './components/ModelComparison';
import PracticeGuide from './components/PracticeGuide';
import PromptLibrary from './components/PromptLibrary';
import Footer from './components/Footer';
const App: React.FC = () => {
return (
<ThemeProvider>
<div className="min-h-screen bg-white dark:bg-gray-950 text-gray-900 dark:text-gray-100 transition-colors duration-300">
<Header />
<main>
<Hero />
<ImportanceSection />
<StructureSection />
<ModelComparison />
<PracticeGuide />
<PromptLibrary />
</main>
<Footer />
</div>
</ThemeProvider>
);
};
export default App;