File size: 241 Bytes
23c1680
 
 
 
 
 
 
 
 
 
 
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>
  )
}