first commit

This commit is contained in:
Tomas Dvorak
2026-02-22 10:42:17 +01:00
commit 55885a0e8f
239 changed files with 103690 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
import { ParticleBackground } from "@/components/ui/magicui"
import { Hero } from "@/components/sections/Hero"
import { Features } from "@/components/sections/Features"
import { CodeShowcase } from "@/components/sections/CodeShowcase"
import { Architecture } from "@/components/sections/Architecture"
import { Languages } from "@/components/sections/Languages"
import { QuickStart } from "@/components/sections/QuickStart"
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>
)
}
export default App