import "./NewsSection.scss"; import Image from "next/image"; import { getNews } from "./newsSectionStore"; import arrow_icon from "./icons/arrow-right.svg"; import NewsCard from "@/entities/NewsCard/NewsCard"; import Typography from "@/shared/ui/components/Typography/Typography"; import { Link } from "@/shared/config/navigation"; import { getTranslations } from "next-intl/server"; const NewsSection = async () => { const tHome = await getTranslations("home"); const tGeneral = await getTranslations("general"); const news = await getNews(); return (
{tGeneral("news")} {tHome("read_more")} Arrow Right Icon
); }; export default NewsSection;