File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -54,10 +54,7 @@ function Footer() {
5454 < ul className = "space-y-4" >
5555 { [ 'About' , 'Home' , 'Article' ] . map ( ( item ) => (
5656 < li key = { item } >
57- < Link
58- to = { item === 'Home' ? '/' : `/${ item . toLowerCase ( ) . replace ( / \s + / g, '-' ) } ` }
59- className = "group dark:hover:text-gray-200 dark:text-gray-400 flex items-center text-gray-600 hover:text-gray-900"
60- >
57+ < Link to = { item === 'Article' ? '/article-list' : `/${ item . toLowerCase ( ) . replace ( / \s + / g, '-' ) } ` } className = "group dark:hover:text-gray-200 dark:text-gray-400 flex items-center text-gray-600 hover:text-gray-900" >
6158 < span className = "w-2 h-2 bg-blue-500 rounded-full mr-3 opacity-0 group-hover:opacity-100 transition-opacity" />
6259 { item }
6360 </ Link >
Original file line number Diff line number Diff line change @@ -265,7 +265,6 @@ const AddArticlePage = () => {
265265 < option value = "Politics" > Politics</ option >
266266 < option value = "Narratives" > Narratives</ option >
267267 < option value = "Trending-Topics" > Trending-Topics</ option >
268- < option value = "Others" > Others</ option >
269268 </ select >
270269 </ div >
271270 </ div >
You can’t perform that action at this time.
0 commit comments