File tree Expand file tree Collapse file tree 3 files changed +35
-6
lines changed
Expand file tree Collapse file tree 3 files changed +35
-6
lines changed Original file line number Diff line number Diff line change @@ -60,17 +60,17 @@ export const cardsData = [
6060 {
6161 lang : "en" ,
6262 description :
63- "Real-time capture from your WebCam to ASCII Art rendering in a Qt6 window and to a virtual webcam, all in Python ." ,
63+ "Real-time capture from your WebCam to ASCII Art rendering in a Qt6 window and to a virtual webcam." ,
6464 } ,
6565 {
6666 lang : "fr" ,
6767 description :
68- "Capture de votre WebCam en temps réel vers un rendu ASCII Art dans une fenêtre Qt6 et vers une webcam virtuelle, le tout en Python ." ,
68+ "Capture de votre WebCam en temps réel vers un rendu ASCII Art dans une fenêtre Qt6 et vers une webcam virtuelle." ,
6969 } ,
7070 {
7171 lang : "es" ,
7272 description :
73- "Captura en tiempo real desde tu WebCam a una representación en ASCII Art en una ventana Qt6 y a una webcam virtual, todo en Python ." ,
73+ "Captura en tiempo real desde tu WebCam a una representación en ASCII Art en una ventana Qt6 y a una webcam virtual." ,
7474 } ,
7575 ] ,
7676 } ,
@@ -126,4 +126,30 @@ export const cardsData = [
126126 } ,
127127 ] ,
128128 } ,
129+ {
130+ githubRepoName : "Rsscript" ,
131+ project : "rsscript" ,
132+ imageCover : "rsscript.jpg" ,
133+ title : "Rsscript" ,
134+ author : "Red Moon" ,
135+ github : "https://github.com/Bit-Scripts/Rsscript" ,
136+ demo : "" ,
137+ translations : [
138+ {
139+ lang : "en" ,
140+ description :
141+ "Rsscript is an open source project of a Discord bot whose purpose is to read RSS feeds and transmit them in a specific Discord channel." ,
142+ } ,
143+ {
144+ lang : "fr" ,
145+ description :
146+ "Rsscript est un projet open source de bot Discord qui a pour but de lire les flux RSS et de les transmettre dans un salon Discord spécifique." ,
147+ } ,
148+ {
149+ lang : "es" ,
150+ description :
151+ "Rsscript es un proyecto de código abierto de un bot de Discord cuyo objetivo es leer los feeds RSS y transmitirlos en un canal de Discord específico." ,
152+ } ,
153+ ] ,
154+ } ,
129155] ;
Original file line number Diff line number Diff line change @@ -8,19 +8,22 @@ export function GithubInfo({ githubRepoName }) {
88
99 if ( ! projectInfo ) return null ;
1010
11+ const baseStyle =
12+ "mt-4 flex flex-col items-center rounded px-3 py-1 text-xs font-semibold text-neutral-200" ;
13+
1114 return (
1215 < div className = "mb-4 flex justify-center gap-4" >
13- < div className = "mt-4 flex flex-col items-center rounded bg-slate-600 px-3 py-1 text-xs font-semibold text-neutral-200" >
16+ < div className = { ` ${ baseStyle } bg-slate-500` } >
1417 < span className = "font-bold" > Last commit</ span >
1518 < span > { convertDate ( projectInfo ?. updated_at ) } </ span >
1619 </ div >
1720
18- < div className = "mt-4 flex flex-col items-center rounded bg-slate-700 px-3 py-1 text-xs font-semibold text-neutral-200" >
21+ < div className = { ` ${ baseStyle } bg-slate-600` } >
1922 < span className = "font-bold" > Language</ span >
2023 < span > { projectInfo ?. language } </ span >
2124 </ div >
2225
23- < div className = "mt-4 flex flex-col items-center rounded bg-slate-800 px-3 py-1 text-xs font-semibold text-neutral-200" >
26+ < div className = { ` ${ baseStyle } bg-slate-700` } >
2427 < span className = "font-bold" > Licence</ span >
2528 < span > { projectInfo ?. license ?. key ?? "N/A" } </ span >
2629 </ div >
You can’t perform that action at this time.
0 commit comments