Skip to content

Commit 385b68c

Browse files
style: fix pages alignment
1 parent 6dbb9d7 commit 385b68c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/app/about.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const Route = createFileRoute("/about")({
99

1010
function RouteComponent() {
1111
return (
12-
<Page>
12+
<Page className="items-center">
1313
<div className="flex flex-col gap-8 p-8 text-justify">
1414
<h2 className="text-center font-bold text-lg">About</h2>
1515
<div>

src/app/privacy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const Route = createFileRoute("/privacy")({
77

88
function RouteComponent() {
99
return (
10-
<Page>
10+
<Page className="items-center">
1111
<div className="flex flex-col gap-8 p-8 text-justify">
1212
<h2 className="text-center font-bold text-lg">Privacy</h2>
1313
<div>

src/app/source.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export const Route = createFileRoute("/source")({
4747

4848
function RouteComponent() {
4949
return (
50-
<Page>
50+
<Page className="items-center">
5151
<div className="flex flex-col gap-8 p-8 text-justify">
5252
<h2 className="text-center font-bold text-lg">Source</h2>
5353
<div>

0 commit comments

Comments
 (0)