41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
"use client";
|
|
|
|
import React, { useEffect } from "react";
|
|
import Header1 from "@/components/layout/Header1";
|
|
import Footer1 from "@/components/layout/Footer1";
|
|
import InnerBanner from "@/components/common/InnerBanner";
|
|
import FaqPageSection from "@/components/faq/FaqPageSection";
|
|
import FaqVideoSection from "@/components/careers/FaqVideoSection";
|
|
import PageHeader from "@/components/common/PageHeader";
|
|
import FaqSection from "@/components/home/home-3/FaqSection";
|
|
import FaqFour from "@/components/home/FaqFour";
|
|
import FaqFive from "@/components/home/FaqFive";
|
|
|
|
export default function FaqPage() {
|
|
useEffect(() => {
|
|
const init = () => {
|
|
if (typeof window !== "undefined" && (window as any).initMetatron && (window as any).jQuery) {
|
|
(window as any).initMetatron();
|
|
} else {
|
|
setTimeout(init, 100);
|
|
}
|
|
};
|
|
init();
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
<Header1 />
|
|
<main>
|
|
<PageHeader title="FAQ" />
|
|
<FaqPageSection />
|
|
<FaqFour />
|
|
<FaqFive />
|
|
<FaqVideoSection />
|
|
{/* <FaqSection/> */}
|
|
</main>
|
|
<Footer1 />
|
|
</>
|
|
);
|
|
}
|