Skip to content

Commit b82a2b1

Browse files
committed
Address patrick's suggestions
- Add favicon to the page
1 parent 8718471 commit b82a2b1

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

public/favicon.svg

Lines changed: 1 addition & 0 deletions
Loading

src/app/layout.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ export const metadata: Metadata = {
88
title: 'Operations Gateway',
99
description:
1010
'Operations Gateway is a centralised platform for exploring, inspecting, and exporting operational data. It supports scalar values, images, waveforms, and vector data with dynamic visualisation tools and session-based workflows, enabling repeatable system insight and analysis.',
11+
icons: {
12+
icon: '/operationsgateway-project/favicon.svg',
13+
},
1114
};
1215

1316
export default function RootLayout({

src/app/page.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,8 @@ export default function Home() {
5555
>
5656
<Toolbar sx={{ display: 'flex', justifyContent: 'space-between' }}>
5757
{appBarLogo && (
58-
<Box sx={{ display: 'flex', alignItems: 'center', width: '122px' }}>
59-
{/* eslint-disable-next-line @next/next/no-img-element */}
60-
<img src={appBarLogo} alt={appBarLogoAlt} width="122px" />
61-
</Box>
58+
// eslint-disable-next-line @next/next/no-img-element
59+
<img src={appBarLogo} alt={appBarLogoAlt} height="24px" />
6260
)}
6361
<Stack
6462
direction="row"
@@ -382,7 +380,7 @@ export default function Home() {
382380
</Box>
383381

384382
<Typography variant="body1" sx={{ mb: 2 }}>
385-
Users can apply built-in functions to columns — such as math
383+
Users can apply built-in functions to columns — such as mathematical
386384
operations or waveform transformations — to create virtual data
387385
channels that appear in the main table.
388386
</Typography>

0 commit comments

Comments
 (0)