re-enable changelog on homepage
This commit is contained in:
parent
dae30b3844
commit
cf2ae1a622
@ -22,24 +22,23 @@ export default function Changelog(props: { changelogData: LogItem[] }) {
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<ul className="list-disc list-inside mr-7 marker:font-ibm marker:text-red-400 ">
|
<ul className="list-disc list-inside mr-7 marker:font-ibm marker:text-red-400 ">
|
||||||
Please check back in a little bit!
|
|
||||||
|
|
||||||
{/* { */}
|
{
|
||||||
{/* props.changelogData.map((log, index) => { */}
|
props.changelogData.map((log, index) => {
|
||||||
{/* let mostRecent = index == 0 ? true : false; */}
|
let mostRecent = index == 0 ? true : false;
|
||||||
{/**/}
|
|
||||||
{/* return ( */}
|
return (
|
||||||
{/* <li key={log.id}> */}
|
<li key={log.id}>
|
||||||
{/* <NewsItem */}
|
<NewsItem
|
||||||
{/* date={log.date} */}
|
date={log.date}
|
||||||
{/* title={log.title} */}
|
title={log.title}
|
||||||
{/* color={newsItemColors[index]} */}
|
color={newsItemColors[index]}
|
||||||
{/* link={[log.link, log.linkName]} */}
|
link={[log.link, log.linkName]}
|
||||||
{/* mostRecent={mostRecent} /> */}
|
mostRecent={mostRecent} />
|
||||||
{/* </li> */}
|
</li>
|
||||||
{/* ) */}
|
)
|
||||||
{/* }) */}
|
})
|
||||||
{/* } */}
|
}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user