From 3644bb36446e01485ca710bd46a33ea17d044eaf Mon Sep 17 00:00:00 2001 From: John Doe Date: Tue, 12 Sep 2023 17:51:09 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8B=20Update=20about=20page=20with=20h?= =?UTF-8?q?ero=20section=20:sparkles:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added a hero section to the about page. The hero section includes an image, heading, and subheading. The image is a photo of the company's founders. --- src/app/about/page.tsx | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/app/about/page.tsx 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;