24 lines
860 B
TypeScript
24 lines
860 B
TypeScript
import Footer from "@/components/landing-page/footer";
|
|
import FloatingMenu from "@/components/landing-page/floating";
|
|
import NewsAndServicesHeader from "@/components/landing-page/headers-news-services";
|
|
import ContentLatest from "@/components/landing-page/content-latest";
|
|
import ContentPopular from "@/components/landing-page/content-popular";
|
|
import ContentCategory from "@/components/landing-page/category-content";
|
|
import FloatingMenuNews from "@/components/landing-page/floating-news";
|
|
import { Suspense } from "react";
|
|
|
|
export default function NewsAndServicesPage() {
|
|
return (
|
|
<div className="relative min-h-screen bg-white">
|
|
<FloatingMenuNews />
|
|
<Suspense fallback={null}>
|
|
<NewsAndServicesHeader />
|
|
</Suspense>
|
|
<ContentLatest />
|
|
<ContentPopular />
|
|
<ContentCategory />
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|