import { Card, CardContent } from "@/shared/components/ui/card";
import { News } from "@/shared/types/news";
import { ArrowRight } from "lucide-react";
import Image from "next/image";
import Link from "next/link";
type Props = { news: News };
export function NewsMainCard({ news }: Props) {
return (
<>