File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ const RawImageViewer = () => {
207207 how the RAW file was created.</ p >
208208 </ div >
209209 < div className = 'mt-4 text-sm text-gray-600' >
210- < p > © ACM at UAB & Michael Gathara </ p >
210+ < p > © < a className = 'underline' href = "https://uabacm.org/" target = '_blank' > ACM at UAB</ a > & < a className = 'underline' href = 'https://michaelgathara.com/' target = '_black' > Michael Gathara</ a > | Open Sourced: < a className = 'underline' href = "https://github.com/UABACM/raw_image" target = '_blank' > Github </ a > </ p >
211211 </ div >
212212 </ div >
213213 ) ;
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ export default function Document() {
55 < Html lang = "en" >
66 < Head >
77 < meta charSet = "utf-8" />
8- < title > ACM at UAB Raw Image Viewer</ title >
98 < meta httpEquiv = "X-UA-Compatible" content = "IE=edge" />
109 < meta name = "description" content = "RAW Image Viewer by ACM at UAB" />
1110 < link rel = "icon" href = "/favicon.ico" />
Original file line number Diff line number Diff line change 1+ import Head from 'next/head'
12import RawImageViewer from '../components/raw_image'
23
34export default function Home ( ) {
45 return (
5- < div className = 'min-h-screen flex items-center justify-center bg-gray-200' >
6- < RawImageViewer />
7- </ div >
6+ < >
7+ < Head >
8+ < title > ACM at UAB Raw Image Viewer</ title >
9+ </ Head >
10+ < div className = 'min-h-screen flex items-center justify-center bg-gray-200' >
11+ < RawImageViewer />
12+ </ div >
13+ </ >
814 )
915}
You can’t perform that action at this time.
0 commit comments