diff --git a/frontend/src/pages/NotFound.tsx b/frontend/src/pages/NotFound.tsx
index cefa2c9..a1b7f2f 100644
--- a/frontend/src/pages/NotFound.tsx
+++ b/frontend/src/pages/NotFound.tsx
@@ -10,5 +10,9 @@ export default () => (
ページないよ (笑) | {SITE_TITLE}
- Not Found
+
+ 404
ページないよ(笑)
+
)
diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js
index b7d6d02..a813597 100644
--- a/frontend/tailwind.config.js
+++ b/frontend/tailwind.config.js
@@ -5,7 +5,17 @@ export default {
content: ['./index.html',
'./src/**/*.{js,ts,jsx,tsx}'],
theme: {
- extend: {},
+ extend: {
+ keyframes: {
+ 'rainbow-scroll': {
+ '0%': { backgroundPosition: '0% 50%' },
+ '100%': { backgroundPosition: '200% 50%' },
+ },
+ },
+ animation: {
+ 'rainbow-scroll': 'rainbow-scroll .25s linear infinite',
+ },
+ }
},
plugins: [],
} satisfies Config