forked from Transparency/kgroad-frontend2
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import Header from "@/widgets/home/Header/Header";
|
|
import StatisticsSection from "@/widgets/home/StatisticsSection/StatisticsSection";
|
|
import RatingSection from "@/widgets/home/RatingSection/RatingSection";
|
|
import NewsSection from "@/widgets/home/NewsSection/NewsSection";
|
|
import MapSection from "@/widgets/home/MapSection/MapSection";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "KG ROAD | Главная",
|
|
description:
|
|
"Главная страница Kyrgyzstan Transperency International",
|
|
};
|
|
|
|
const Home = async ({
|
|
searchParams,
|
|
}: {
|
|
searchParams: {
|
|
["тип-дороги"]: string;
|
|
["поиск-на-карте"]: string;
|
|
["поиск-рейтинг"]: string;
|
|
["страница-рейтинга"]: string;
|
|
};
|
|
}) => {
|
|
return (
|
|
<div className="home">
|
|
<Header />
|
|
<StatisticsSection />
|
|
<MapSection searchParams={searchParams} />
|
|
<RatingSection searchParams={searchParams} />
|
|
<NewsSection />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Home;
|