22 lines
526 B
JavaScript
22 lines
526 B
JavaScript
import Communicate from '@/components/Communicate'
|
|
import Collaborate from '@/components/Collaborate'
|
|
import Build from '@/components/Build'
|
|
import Studio from '@/components/Studio'
|
|
import Eventmgmt from '@/components/Eventmgmt'
|
|
import Crm from '@/components/Crm'
|
|
import Featurehero from '@/components/Featurehero'
|
|
|
|
export default function features() {
|
|
return (
|
|
<>
|
|
<Featurehero />
|
|
<Collaborate />
|
|
<Studio />
|
|
<Build />
|
|
<Communicate />
|
|
<Eventmgmt />
|
|
<Crm />
|
|
</>
|
|
)
|
|
}
|