From 0da603ee544a158dafd82063411cbe5f135c9286 Mon Sep 17 00:00:00 2001 From: emanuelpps Date: Fri, 16 Feb 2024 18:04:02 -0300 Subject: [PATCH] added corrections --- app/about/freeTime/FreeTime.jsx | 4 +- app/about/skills/Skills.jsx | 69 ++++++++++------------ app/works/[projectName]/page.jsx | 1 - app/works/contact/Contact.jsx | 14 +---- app/works/portfolio/PortfolioContainer.jsx | 1 - components/buttons/Contact/Contact.jsx | 2 +- components/buttons/MyWork/MyWork.jsx | 2 +- components/footer/Footer.jsx | 2 +- components/imagesContainer/backendIcons.js | 8 +-- components/imagesContainer/designIcons.js | 6 +- components/imagesContainer/nativeIcons.js | 4 +- components/loader/loader.js | 2 +- 12 files changed, 48 insertions(+), 67 deletions(-) diff --git a/app/about/freeTime/FreeTime.jsx b/app/about/freeTime/FreeTime.jsx index 3349ab0..d2a881e 100644 --- a/app/about/freeTime/FreeTime.jsx +++ b/app/about/freeTime/FreeTime.jsx @@ -44,9 +44,7 @@ function FreeTime() {

Probably developing new projects to enhance my skills or perfecting my portfolio in some ways. Besides that, I spend my time hiking or - reading books about history. Another thing that I love is playing - game simulators for any kind of machine, be it planes, trucks, cars, - or ships. + reading books about history. Another thing I love is playing various game simulators, whether it's planes, trucks, cars, or ships.

diff --git a/app/about/skills/Skills.jsx b/app/about/skills/Skills.jsx index 039ac1a..5ac25d7 100644 --- a/app/about/skills/Skills.jsx +++ b/app/about/skills/Skills.jsx @@ -8,7 +8,6 @@ import { designIcons } from "@/components/imagesContainer/designIcons"; import { AnimatePresence, motion } from "framer-motion"; function Skills() { - console.log(frontendIcons); return ( -

Frontend

+

+ Frontend +

{frontendIcons.map((image) => ( -
- {image.name} +
+ {image.name}

{image.name}

@@ -67,21 +65,20 @@ function Skills() { id="backend-title-container" className="flex flex-col justify-center items-center" > -

Backend

+

+ Backend +

{backendIcons.map((image) => ( -
- {image.name} +
+ {image.name}

{image.name}

@@ -97,21 +94,20 @@ function Skills() { id="native-title-container" className="flex flex-col justify-center items-center" > -

Mobile

+

+ Mobile +

{nativeIcons.map((image) => ( -
- {image.name} +
+ {image.name}

{image.name}

@@ -127,21 +123,20 @@ function Skills() { id="design-title-container" className="flex flex-col justify-center items-center" > -

Design

+

+ Design +

{designIcons.map((image) => ( -
- {image.name} +
+ {image.name}

{image.name}

diff --git a/app/works/[projectName]/page.jsx b/app/works/[projectName]/page.jsx index 38faac2..b72bf13 100644 --- a/app/works/[projectName]/page.jsx +++ b/app/works/[projectName]/page.jsx @@ -34,7 +34,6 @@ function ProjectName({ params }) { setLoading(false); }; - console.log(projectPage); return (
diff --git a/app/works/contact/Contact.jsx b/app/works/contact/Contact.jsx index db6ed52..54a1f36 100644 --- a/app/works/contact/Contact.jsx +++ b/app/works/contact/Contact.jsx @@ -31,18 +31,15 @@ function Contact() { !fullName || !email || !subject || - !message /*|| - specialChars.test(email)*/ + !message ) { setFormErrors(true); setErrorManagement(errorManager.formError); setTimeout(() => { setFormErrors(false); }, 3000); - //manejar error } else { setFormErrors(false); - console.log("todo ok"); sendEmail(); setButtonText("Sending"); //enviar mail @@ -50,7 +47,6 @@ function Contact() { }; const sendEmail = () => { - console.log(); emailjs .sendForm( process.env.NEXT_PUBLIC_EMAIL_SERVICE_ID, @@ -60,12 +56,6 @@ function Contact() { ) .then( (response) => { - console.log( - "response:", - response.status, - "description:", - response.text - ); setErrorManagement(errorManager.formDeliverOk); setEmail(""); setFullName(""); @@ -142,7 +132,7 @@ function Contact() { }} /> -