@@ -45,30 +45,31 @@ const AboutModal: React.FC<AboutModalProps> = ({ isOpen, onClose, appVersion })
4545 < div className = "p-6 text-center text-gray-700 dark:text-gray-300 space-y-4" >
4646 < p className = "font-bold text-xl" > Git Automation Dashboard</ p >
4747 < p className = "text-sm text-gray-500 dark:text-gray-400" > Version { appVersion } </ p >
48-
49- < div className = "text-sm" >
50- < p > Design and concept by Tim Sinaeve</ p >
51- < p > Implementation by Gemini 2.5 Pro</ p >
52- </ div >
53-
54- < p className = "text-xs text-gray-400 dark:text-gray-500 pt-4" >
55- © 2025 Tim Sinaeve
56- </ p >
57- </ div >
5848
59- < div className = "bg-gray-50 dark:bg-gray-800/50 px-4 py-3 sm:px-6 flex justify-end rounded-b-lg" >
60- < button
61- type = "button"
62- className = "w-full inline-flex justify-center rounded-md border border-gray-300 dark:border-gray-500 shadow-sm px-4 py-2 bg-white dark:bg-gray-700 text-base font-medium text-gray-700 dark:text-gray-200 hover:bg-gray-50 dark:hover:bg-gray-600 focus:outline-none focus:ring-2 focus:ring-offset-2 dark:focus:ring-offset-gray-800 focus:ring-blue-500 sm:w-auto sm:text-sm"
63- onClick = { onClose }
64- data-automation-id = "about-modal-dismiss"
65- >
66- Close
67- </ button >
49+ < p className = "text-sm" > © 2025 Tim Sinaeve. All rights reserved.</ p >
50+
51+ < div className = "flex flex-col sm:flex-row gap-2 pt-2" >
52+ < button
53+ type = "button"
54+ className = "flex-1 inline-flex justify-center rounded-md border border-gray-300 dark:border-gray-500 px-4 py-1.5 bg-white dark:bg-gray-700 text-sm font-medium text-blue-600 dark:text-blue-400 hover:bg-gray-50 dark:hover:bg-gray-600 focus:outline-none focus:ring-2 focus:ring-offset-2 dark:focus:ring-offset-gray-800 focus:ring-blue-500"
55+ onClick = { ( ) => window . electronAPI ?. openWeblink ( 'https://github.com/beNative/git-automation' ) }
56+ data-automation-id = "about-modal-open-github"
57+ >
58+ View on GitHub
59+ </ button >
60+ < button
61+ type = "button"
62+ className = "flex-1 inline-flex justify-center rounded-md border border-gray-300 dark:border-gray-500 px-4 py-1.5 bg-white dark:bg-gray-700 text-sm font-medium text-blue-600 dark:text-blue-400 hover:bg-gray-50 dark:hover:bg-gray-600 focus:outline-none focus:ring-2 focus:ring-offset-2 dark:focus:ring-offset-gray-800 focus:ring-blue-500"
63+ onClick = { ( ) => window . electronAPI ?. openInstallationFolder ?.( ) }
64+ data-automation-id = "about-modal-open-installation-folder"
65+ >
66+ Open Folder
67+ </ button >
68+ </ div >
6869 </ div >
6970 </ div >
7071 </ div >
7172 ) ;
7273} ;
7374
74- export default AboutModal ;
75+ export default AboutModal ;
0 commit comments