Skip to content

Commit d081b0b

Browse files
authored
Merge pull request #13 from opensource-observer/jabolol/mobile-misc-fixes
fix: ux polish pass for 404 page, mobile responsiveness, and page titles
2 parents 6dbfe29 + 4e654a8 commit d081b0b

28 files changed

Lines changed: 107 additions & 35 deletions

File tree

app/app/agent-guide/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { Metadata } from 'next';
12
import MarimoIframe from '@/components/MarimoIframe';
23

34
export default function AgentGuide() {
@@ -7,3 +8,4 @@ export default function AgentGuide() {
78
</div>
89
);
910
}
11+
export const metadata: Metadata = { title: 'Agent Guide' };

app/app/data/metric-definitions/activity/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { Metadata } from 'next';
12
import MarimoIframe from '@/components/MarimoIframe';
23

34
export default function Activity() {
@@ -7,3 +8,4 @@ export default function Activity() {
78
</div>
89
);
910
}
11+
export const metadata: Metadata = { title: 'Activity Metrics' };

app/app/data/metric-definitions/alignment/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { Metadata } from 'next';
12
import MarimoIframe from '@/components/MarimoIframe';
23

34
export default function Alignment() {
@@ -7,3 +8,4 @@ export default function Alignment() {
78
</div>
89
);
910
}
11+
export const metadata: Metadata = { title: 'Alignment Metrics' };

app/app/data/metric-definitions/experience/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { Metadata } from 'next';
12
import MarimoIframe from '@/components/MarimoIframe';
23

34
export default function Experience() {
@@ -7,3 +8,4 @@ export default function Experience() {
78
</div>
89
);
910
}
11+
export const metadata: Metadata = { title: 'Experience Metrics' };

app/app/data/metric-definitions/lifecycle/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { Metadata } from 'next';
12
import MarimoIframe from '@/components/MarimoIframe';
23

34
export default function Lifecycle() {
@@ -7,3 +8,4 @@ export default function Lifecycle() {
78
</div>
89
);
910
}
11+
export const metadata: Metadata = { title: 'Lifecycle Metrics' };

app/app/data/metric-definitions/retention/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { Metadata } from 'next';
12
import MarimoIframe from '@/components/MarimoIframe';
23

34
export default function Retention() {
@@ -7,3 +8,4 @@ export default function Retention() {
78
</div>
89
);
910
}
11+
export const metadata: Metadata = { title: 'Retention Metrics' };

app/app/data/models/commits/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { Metadata } from 'next';
12
import MarimoIframe from '@/components/MarimoIframe';
23

34
export default function Commits() {
@@ -7,3 +8,4 @@ export default function Commits() {
78
</div>
89
);
910
}
11+
export const metadata: Metadata = { title: 'Commits' };

app/app/data/models/developers/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { Metadata } from 'next';
12
import MarimoIframe from '@/components/MarimoIframe';
23

34
export default function Developers() {
@@ -7,3 +8,4 @@ export default function Developers() {
78
</div>
89
);
910
}
11+
export const metadata: Metadata = { title: 'Developers' };

app/app/data/models/ecosystems/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { Metadata } from 'next';
12
import MarimoIframe from '@/components/MarimoIframe';
23

34
export default function Ecosystems() {
@@ -7,3 +8,4 @@ export default function Ecosystems() {
78
</div>
89
);
910
}
11+
export const metadata: Metadata = { title: 'Ecosystems' };

app/app/data/models/events/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { Metadata } from 'next';
12
import MarimoIframe from '@/components/MarimoIframe';
23

34
export default function Events() {
@@ -7,3 +8,4 @@ export default function Events() {
78
</div>
89
);
910
}
11+
export const metadata: Metadata = { title: 'Events' };

0 commit comments

Comments
 (0)