Skip to content

Commit 29e64d7

Browse files
bmuenzenmeyerdarcyclarkecanerakdas
authored
6492 surfin 404 (#7056)
* feat: turtle surfin * fix indentation per our style * specify unit on TW * better whitespace at least on Chrome responsive mode this looks better. still testing * unit of measures on all arbitrary values * Apply suggestions from code review Co-authored-by: Caner Akdas <[email protected]> Signed-off-by: Brian Muenzenmeyer <[email protected]> * use TW content rule * center the error state headings did not alter .special, as that is used for the homepage --------- Signed-off-by: Brian Muenzenmeyer <[email protected]> Co-authored-by: Darcy Clarke <[email protected]> Co-authored-by: Caner Akdas <[email protected]>
1 parent 06400ad commit 29e64d7

File tree

6 files changed

+59
-10
lines changed

6 files changed

+59
-10
lines changed

apps/site/app/[locale]/error.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const ErrorPage: FC<{ error: Error }> = ({ error }) => {
1919

2020
<main>
2121
500
22-
<h1 className="special -mt-4">
22+
<h1 className="special -mt-4 text-center">
2323
{t('layouts.error.internalServerError.title')}
2424
</h1>
2525
<p className="-mt-4 max-w-sm text-center text-lg">

apps/site/app/[locale]/not-found.tsx

+12-8
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,18 @@ const NotFoundPage: FC = () => {
1818

1919
<main>
2020
404
21-
<h1 className="special -mt-4">{t('layouts.error.notFound.title')}</h1>
22-
<div className="my-4 flex items-center justify-center">
23-
<Image
24-
src="/static/images/node-mascot.svg"
25-
alt="The Node.js mascot"
26-
height={114.69}
27-
width={100}
28-
/>
21+
<h1 className="special -mt-4 text-center">
22+
{t('layouts.error.notFound.title')}
23+
</h1>
24+
<div className="my-4 flex h-[150px] items-center justify-center md:h-[300px]">
25+
<div className="turtle motion-safe:animate-surf motion-reduce:animate-none">
26+
<Image
27+
src="/static/images/node-mascot.svg"
28+
alt="The Node.js mascot"
29+
height={114.69}
30+
width={100}
31+
/>
32+
</div>
2933
</div>
3034
<p className="-mt-4 max-w-sm text-center text-lg">
3135
{t('layouts.error.notFound.description')}

apps/site/app/global-error.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ const GlobalErrorPage: FC<{ error: Error }> = ({ error }) => {
2121

2222
<main>
2323
500
24-
<h1 className="special -mt-4">Internal Server Error</h1>
24+
<h1 className="special -mt-4 text-center">
25+
Internal Server Error
26+
</h1>
2527
<p className="-mt-4 max-w-sm text-center text-lg">
2628
This page has thrown a non-recoverable error.
2729
</p>
60.2 KB
Loading

apps/site/styles/effects.css

+31
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,34 @@ h1.special {
1010
md:leading-[4rem]
1111
md:-tracking-[0.06rem];
1212
}
13+
14+
.turtle {
15+
@apply animate-surf
16+
absolute
17+
z-10
18+
translate-x-0
19+
translate-y-0;
20+
}
21+
22+
.turtle img {
23+
@apply h-auto
24+
w-24
25+
md:w-48;
26+
}
27+
28+
.turtle::after {
29+
@apply absolute
30+
-left-full
31+
top-[20%]
32+
-z-10
33+
block
34+
h-36
35+
w-36
36+
-rotate-90
37+
select-none
38+
bg-[url('/static/images/smoke.gif')]
39+
opacity-[0.15]
40+
content-['']
41+
md:-left-1/2
42+
md:top-1/2;
43+
}

apps/site/tailwind.config.ts

+12
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,18 @@ export default {
139139
spacing: { '4.5': '1.125rem', '18': '4.5rem' },
140140
aria: { current: 'current="page"' },
141141
maxWidth: { '8xl': '95rem' },
142+
animation: {
143+
surf: 'surf 1s infinite ease-in-out',
144+
},
145+
keyframes: {
146+
surf: {
147+
'0%': { transform: 'translate(0, 0)' },
148+
'25%': { transform: 'translate(0, 6px)' },
149+
'50%': { transform: 'translate(0, -6px)' },
150+
'75%': { transform: 'translate(0, 3px)' },
151+
'100%': { transform: 'translate(0, 0)' },
152+
},
153+
},
142154
},
143155
},
144156
darkMode: ['class', '[data-theme="dark"]'],

0 commit comments

Comments
 (0)