This commit is contained in:
Tomas Dvorak
2026-02-22 15:41:27 +01:00
parent 0b88627e54
commit 409acd2e08
84 changed files with 65382 additions and 27475 deletions
+20 -17
View File
@@ -1,3 +1,4 @@
import { ThemeProvider } from "@/contexts/ThemeContext"
import { ParticleBackground } from "@/components/ui/magicui"
import { Hero } from "@/components/sections/Hero"
import { Features } from "@/components/sections/Features"
@@ -9,23 +10,25 @@ import { Footer } from "@/components/sections/Footer"
function App() {
return (
<div className="relative min-h-screen bg-background text-foreground overflow-x-hidden">
{/* Particle Background */}
<ParticleBackground />
{/* Main Content */}
<main className="relative z-10">
<Hero />
<Features />
<CodeShowcase />
<Architecture />
<Languages />
<QuickStart />
</main>
{/* Footer */}
<Footer />
</div>
<ThemeProvider defaultTheme="dark" storageKey="devour-ui-theme">
<div className="relative min-h-screen bg-background text-foreground overflow-x-hidden">
{/* Particle Background */}
<ParticleBackground />
{/* Main Content */}
<main className="relative z-10">
<Hero />
<Features />
<CodeShowcase />
<Architecture />
<Languages />
<QuickStart />
</main>
{/* Footer */}
<Footer />
</div>
</ThemeProvider>
)
}