This commit is contained in:
2024-09-10 14:46:49 +02:00
parent f484975397
commit df0abb99ab
563 changed files with 19624 additions and 664 deletions

View File

@@ -0,0 +1,15 @@
import Usecases from '@/components/Usecases'
import Banner from '@/components/Banner'
import Communhero from '@/components/Communhero'
import Commevents from '@/components/Commevents'
import Events from '@/components/Events'
export default function community() {
return (
<>
<Communhero />
<Commevents />
<Events />
</>
)
}