Skip to content

Commit 3f2d334

Browse files
styling
1 parent 1b2602a commit 3f2d334

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

src/components/raw_image.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>&copy; ACM at UAB & Michael Gathara</p>
210+
<p>&copy; <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
);

src/pages/_document.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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" />

src/pages/index.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1+
import Head from 'next/head'
12
import RawImageViewer from '../components/raw_image'
23

34
export 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
}

0 commit comments

Comments
 (0)