Skip to content

Commit 6ef1460

Browse files
committed
Merge branch 'main' into feat/game-of-disco
2 parents 199b2ab + a764f3d commit 6ef1460

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

apps/typegpu-docs/src/components/ExampleView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export function ExampleView({ example }: Props) {
111111
className={cs(
112112
'flex justify-evenly items-center flex-wrap h-full box-border flex-col md:flex-row md:gap-4',
113113
codeEditorShowing
114-
? 'md:max-h-[calc(50vh-3rem)] md:overflow-auto'
114+
? 'md:max-h-[calc(40vh-1.25rem)] md:overflow-auto'
115115
: '',
116116
)}
117117
>

apps/typegpu-docs/src/layouts/PageLayout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const { title, theme = 'light' } = Astro.props;
66

77
<html data-theme={theme}>
88
<head>
9-
<title>{title ? `${title} |` : ''} TypeGPU</title>
9+
<title>{title ?? 'TypeGPU'}</title>
1010
<meta charset="UTF-8" />
1111
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
1212
<link rel="icon" href="/TypeGPU/favicon.svg" />

apps/typegpu-docs/src/pages/benchmark/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import BenchmarkApp from './benchmark-app.tsx';
55
import TypeGPULogoDark from '../../assets/typegpu-logo-dark.svg';
66
---
77

8-
<PageLayout title="Benchmark" theme="dark">
8+
<PageLayout title="Benchmark | TypeGPU" theme="dark">
99
<h1 class="w-full flex items-center justify-center">
1010
<Image
1111
src={TypeGPULogoDark}

apps/typegpu-docs/src/pages/examples/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import { ExampleLayout } from '../../components/ExampleLayout';
33
import PageLayout from '../../layouts/PageLayout.astro';
44
---
55

6-
<PageLayout title="Live Examples">
6+
<PageLayout title="Live Examples | TypeGPU">
77
<ExampleLayout client:only="react" />
88
</PageLayout>

apps/typegpu-docs/src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import PageLayout from '../layouts/PageLayout.astro';
2323
const showcaseVideoResolution = [2048, 1200];
2424
---
2525

26-
<PageLayout>
26+
<PageLayout title="TypeGPU – Type-safe WebGPU toolkit">
2727
<main
2828
class="flex flex-col items-center bg-tameplum-50 lg:gap-[7.5rem] gap-10 md:gap-20">
2929
<section

0 commit comments

Comments
 (0)