Skip to content

Commit

Permalink
added hero section in home page
Browse files Browse the repository at this point in the history
  • Loading branch information
spencer-rafada committed Dec 29, 2023
1 parent 6d869d8 commit 1d108ba
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
import React, { Suspense, lazy } from 'react'

const HeroHeader = lazy(() => import('./(home)/HeroHeader'))

export default function Home() {
return <div>Ray Foundation</div>
return (
<>
<Suspense fallback={<></>}>
<HeroHeader />
</Suspense>
<div>Ray Foundation</div>
</>
)
}

0 comments on commit 1d108ba

Please sign in to comment.