Spaces:
Runtime error
Runtime error
File size: 241 Bytes
6dee33f |
1 2 3 4 5 6 7 8 9 10 11 12 |
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>
)
}
|