import ContentCard from "@/components/ContentCard"; import NewsItem from "@/components/home/NewsItem"; import Link from "next/link"; import { LogItem } from "../../../lib/log-item"; const newsItemColors = [ 'text-white', 'text-red-300', 'text-red-400', 'text-red-500', 'text-red-600', ] export default function Changelog(props: { changelogData: LogItem[] }) { return (

{'< What\'s new? >'}


    { props.changelogData.map((log, index) => { let mostRecent = index == 0 ? true : false; return (
  • ) }) }

{'//'} For more, head over to the changelog
) }