Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a7aec80f39 |
@@ -2,6 +2,7 @@
|
||||
|
||||
import { useEffect, useState } from 'react';
|
||||
import ReactMarkdown from 'react-markdown';
|
||||
import Link from 'next/link';
|
||||
|
||||
interface NewsItem {
|
||||
id: number;
|
||||
@@ -143,9 +144,16 @@ export default function NewsSection() {
|
||||
{item.special && (
|
||||
<>
|
||||
<span>•</span>
|
||||
<span style={{ color: '#be185d' }}>
|
||||
<Link
|
||||
href={`/special/${item.special.name}`}
|
||||
style={{
|
||||
color: '#be185d',
|
||||
textDecoration: 'none',
|
||||
fontWeight: '500'
|
||||
}}
|
||||
>
|
||||
★ {item.special.name}
|
||||
</span>
|
||||
</Link>
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user