Skip to content

Commit 5b3c4f1

Browse files
committed
Update footer text, i18n, and Tailwind plugins
Changed the footer 'made with' text to 'AI-Powered' in both English and Spanish translations. Updated the footer component to italicize the 'made with' text. Removed '@tailwindcss/line-clamp' from Tailwind plugins. Added '/docs/*' to .gitignore and added a new .almapi_logo.png.icloud file.
1 parent 9d9397c commit 5b3c4f1

5 files changed

Lines changed: 6 additions & 5 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ yarn-error.log*
2626
*.tsbuildinfo
2727
next-env.d.ts
2828

29-
.DS_Store
29+
.DS_Store
30+
/docs/*

app/i18n.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ const resources = {
493493
},
494494
footer: {
495495
slogan: "Building the future with code",
496-
made_with: "Made with AI",
496+
made_with: "AI-Powered",
497497
copyright: "© 2024 Álvaro Maldonado. All rights reserved."
498498
},
499499
chatbot: {
@@ -995,7 +995,7 @@ const resources = {
995995
},
996996
footer: {
997997
slogan: "Construyendo el futuro con código",
998-
made_with: "Hecho con IA",
998+
made_with: "Impulsado con IA",
999999
copyright: "© 2024 Álvaro Maldonado. Todos los derechos reservados."
10001000
},
10011001
chatbot: {

components/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default function Footer() {
8080
{/* Copyright */}
8181
<div className="pt-8 text-center">
8282
<p className="text-gray-400 mb-2 flex items-center justify-center gap-2">
83-
{t("footer.made_with")}
83+
<span className="italic">{t("footer.made_with")}</span>
8484
<BrainCircuit className="w-4 h-4 text-blue-600 dark:text-blue-400" />
8585
<Bot className="w-4 h-4 text-blue-500 dark:text-blue-300" />
8686
<Code2 className="w-4 h-4 text-blue-700 dark:text-blue-500" />

public/nav/.almapi_logo.png.icloud

167 Bytes
Binary file not shown.

tailwind.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,6 @@ const config: Config = {
9191
}
9292
}
9393
},
94-
plugins: [require("tailwindcss-animate"), require('@tailwindcss/line-clamp')],
94+
plugins: [require("tailwindcss-animate")],
9595
};
9696
export default config;

0 commit comments

Comments
 (0)