diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..a3d7815 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,41 @@ +import rightImg from "@/images/about-hero-right.png"; +import React, { FC } from "react"; +import SectionFounder from "./SectionFounder"; +import SectionStatistic from "./SectionStatistic"; +import SectionHero from "./SectionHero"; +import BgGlassmorphism from "@/components/BgGlassmorphism"; +import BackgroundSection from "@/components/BackgroundSection"; +import SectionClientSay from "@/components/SectionClientSay"; +import SectionSubscribe2 from "@/components/SectionSubscribe2"; + +export interface PageAboutProps {} + +const PageAbout: FC = ({}) => { + return ( +
+ {/* ======== BG GLASS ======== */} + + +
+ + + +
+ + +
+ + + + +
+
+ ); +}; + +export default PageAbout;