import "./NewsSection.scss"; import Image from "next/image"; import Link from "next/link"; 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"; const NewsSection = async () => { const news = await getNews(); return (
Новости Читать Arrow Right Icon
); }; export default NewsSection;