28 lines
864 B
TypeScript
28 lines
864 B
TypeScript
"use client";
|
|
import Header from "@/components/shared/layout/header/Header";
|
|
import AboutBanner from "@/components/pages/about/AboutBanner";
|
|
import AboutServiceComponent from "@/components/pages/about/AboutService";
|
|
import Footer from "@/components/shared/layout/footer/Footer";
|
|
import AboutScrollProgressButton from "@/components/pages/about/AboutScrollProgressButton";
|
|
import AboutInitAnimations from "@/components/pages/about/AboutInitAnimations";
|
|
import AboutStarter from "@/components/pages/about/AboutStarter";
|
|
|
|
const AboutUsClient = () => {
|
|
return (
|
|
<div className="enterprise-about-page">
|
|
<Header />
|
|
<main>
|
|
<AboutBanner />
|
|
<AboutServiceComponent />
|
|
<AboutStarter />
|
|
</main>
|
|
<Footer />
|
|
<AboutScrollProgressButton />
|
|
<AboutInitAnimations />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AboutUsClient;
|
|
|