17 lines
392 B
JavaScript
17 lines
392 B
JavaScript
import Hero from '@/components/Hero'
|
|
import Faq from '@/components/community/Faq'
|
|
import { initCheck } from '@/util/session-util'
|
|
|
|
export default async function CommunityFaqPage() {
|
|
await initCheck()
|
|
|
|
return (
|
|
<>
|
|
<Hero title="FAQ" />
|
|
<div className="container flex flex-wrap items-center justify-between mx-auto p-4 m-4 border">
|
|
<Faq />
|
|
</div>
|
|
</>
|
|
)
|
|
}
|