feat: add input of long url on homepage

This commit is contained in:
2025-07-08 02:28:54 +00:00
parent 32b95bf21b
commit deccc0ae3f
17 changed files with 280 additions and 79 deletions

15
tailwind.config.js Normal file
View File

@@ -0,0 +1,15 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
fontFamily: {
pacifico: ['"Pacifico"', 'cursive'],
},
},
},
plugins: [],
}