forked from ourworld_web/www_engage_os
13 lines
231 B
TypeScript
13 lines
231 B
TypeScript
import { AboutHero } from "@/components/AboutHero"
|
|
import { AboutSolutions } from "@/components/AboutSolutions"
|
|
|
|
|
|
export default function About() {
|
|
return (
|
|
<div>
|
|
<AboutHero />
|
|
<AboutSolutions />
|
|
</div>
|
|
)
|
|
}
|