feat: static homepage

This commit is contained in:
2023-09-18 14:29:54 -06:00
parent bde70454dc
commit a8c579b94e
5 changed files with 389 additions and 3 deletions
+8 -3
View File
@@ -1,11 +1,16 @@
import Clanes from '@/app/Clanes'
import Hero from '@/app/Hero'
import Social from '@/app/Social'
import Team from '@/app/Team'
import { type FC } from 'react'
const HomePage: FC = () => {
return (
<>
<h1>
Home Page
</h1>
<Hero />
<Clanes />
<Social />
<Team />
</>
)
}