devforge / app /page.tsx
Hanzo Dev
Initial commit
23c1680
import { Hero } from '@/components/sections/hero'
import { Features } from '@/components/sections/features'
export default function Home() {
return (
<main className="min-h-screen">
<Hero />
<Features />
</main>
)
}