chore: adjusted default styles for default template 6e328c5a
Steve · 2025-10-05 16:19 2 file(s) · +18 −4
src/templates/extras/client/src/components/Home.tsx/Home-with-reactroutermpa-rpc.tsx +9 −2
30 30
	}
31 31
32 32
	return (
33 -
		<>
33 +
		<div
34 +
			style={{
35 +
				maxWidth: "1280px",
36 +
				margin: "0 auto",
37 +
				padding: "2rem",
38 +
				textAlign: "center",
39 +
			}}
40 +
		>
34 41
			<div>
35 42
				<a
36 43
					href="https://github.com/stevedylandev/bhvr"
68 75
					)}
69 76
				</div>
70 77
			</ClientOnly>
71 -
		</>
78 +
		</div>
72 79
	);
73 80
}
74 81
src/templates/extras/client/src/components/Home.tsx/Home-with-reactroutermpa.tsx +9 −2
20 20
	}
21 21
22 22
	return (
23 -
		<>
23 +
		<div
24 +
			style={{
25 +
				maxWidth: "1280px",
26 +
				margin: "0 auto",
27 +
				padding: "2rem",
28 +
				textAlign: "center",
29 +
			}}
30 +
		>
24 31
			<div>
25 32
				<a
26 33
					href="https://github.com/stevedylandev/bhvr"
58 65
					)}
59 66
				</div>
60 67
			</ClientOnly>
61 -
		</>
68 +
		</div>
62 69
	);
63 70
}
64 71