File size: 401 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import Team from "../../components/team/Team";
import Cta from "../../components/cta/Cta";
import AboutOne from "./AboutOne";
import AboutTwo from "./AboutTwo";
import AboutThree from "./AboutThree";
export default function About() {
return (
<main className="relative bg-gray-900 py-16 sm:py-24">
<AboutOne/>
<AboutTwo/>
<AboutThree/>
<Team />
<Cta />
</main>
);
}
|