We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c32a5a0 commit 2062db9Copy full SHA for 2062db9
src/app/projects/page.tsx
@@ -31,13 +31,9 @@ export default function Page() {
31
if (!data) return <NothingFound />
32
33
return (
34
- <div>
35
- <header className="prose">
36
- <h1>项目们</h1>
37
- </header>
38
-
39
- <main className="mt-10">
40
- <div className="my-12 inline-flex items-center text-3xl font-medium">
+ <div className="mt-10">
+ <header className="prose my-12 flex items-center">
+ <h1 className="flex items-center">
41
项目{' '}
42
{githubUsername && (
43
<a
@@ -50,7 +46,9 @@ export default function Page() {
50
46
<CodiconGithubInverted />
51
47
</a>
52
48
)}
53
- </div>
49
+ </h1>
+ </header>
+ <main>
54
<BottomToUpTransitionView>
55
<ProjectList projects={data || noopArr} />
56
</BottomToUpTransitionView>
0 commit comments