2025-06-17 03:01:19 +00:00
|
|
|
"use client";
|
2025-04-24 09:26:01 +00:00
|
|
|
import InstallPrompt from "@/components/install-promp";
|
2025-02-24 12:24:58 +00:00
|
|
|
import BannerHumasNew from "@/components/landing/banner-new";
|
2024-11-05 06:15:40 +00:00
|
|
|
import BodyLayout from "@/components/landing/BodyLayout";
|
2025-02-26 08:34:45 +00:00
|
|
|
import AnalyticDrawer from "@/components/landing/drawer";
|
|
|
|
|
import FooterNew from "@/components/landing/footer-new";
|
2024-11-05 06:15:40 +00:00
|
|
|
import HeaderNews from "@/components/landing/HeaderNews";
|
2025-02-26 08:34:45 +00:00
|
|
|
import NewsTicker from "@/components/landing/NewsTicker";
|
2025-06-17 03:01:19 +00:00
|
|
|
import dynamic from "next/dynamic";
|
2025-03-14 08:45:40 +00:00
|
|
|
import { Suspense } from "react";
|
2024-01-05 06:57:30 +00:00
|
|
|
|
2025-06-17 03:01:19 +00:00
|
|
|
const TawktoEmbed = dynamic(
|
|
|
|
|
() => {
|
|
|
|
|
return import("@/components/ui/tawkto/tawkto");
|
|
|
|
|
},
|
|
|
|
|
{ ssr: true }
|
|
|
|
|
);
|
|
|
|
|
|
2024-01-05 06:57:30 +00:00
|
|
|
export default function Home() {
|
2024-11-05 06:15:40 +00:00
|
|
|
return (
|
|
|
|
|
<>
|
2025-06-17 03:01:19 +00:00
|
|
|
{/* <TawktoEmbed /> */}
|
2025-02-26 08:34:45 +00:00
|
|
|
<section className="flex flex-col">
|
2025-04-24 09:26:01 +00:00
|
|
|
{/* <InstallPrompt /> */}
|
2025-02-26 08:34:45 +00:00
|
|
|
<NewsTicker />
|
|
|
|
|
<AnalyticDrawer />
|
2025-02-24 12:24:58 +00:00
|
|
|
<BannerHumasNew />
|
2024-11-05 06:15:40 +00:00
|
|
|
<HeaderNews />
|
|
|
|
|
<BodyLayout />
|
2025-02-26 08:34:45 +00:00
|
|
|
<Suspense>
|
2025-03-18 08:30:18 +00:00
|
|
|
<FooterNew margin={true} />
|
2025-02-26 08:34:45 +00:00
|
|
|
</Suspense>
|
|
|
|
|
</section>
|
2024-11-05 06:15:40 +00:00
|
|
|
</>
|
|
|
|
|
);
|
2024-01-05 06:57:30 +00:00
|
|
|
}
|