diff --git a/.eslintrc.json b/.eslintrc.json index 43532fc..ab9d6fe 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -4,6 +4,7 @@ "jest": true }, "rules": { - "react/no-unescaped-entities":"off" + "react/no-unescaped-entities":"off", + "no-console": "warn" } } diff --git a/components/Pages/AboutMe/Experience/Experience.style.tsx b/components/Pages/AboutMe/Experience/Experience.style.tsx index 6a794ae..18b5c4f 100644 --- a/components/Pages/AboutMe/Experience/Experience.style.tsx +++ b/components/Pages/AboutMe/Experience/Experience.style.tsx @@ -26,7 +26,6 @@ export const ExperienceSection = styled.section` font-size: 1.1rem; margin-top: 1rem; } - } .experience__section--button{ margin-top: 4rem; diff --git a/components/Pages/Portfolio/Portfolio.json b/components/Pages/Portfolio/Portfolio.json index cd07be4..d398f70 100644 --- a/components/Pages/Portfolio/Portfolio.json +++ b/components/Pages/Portfolio/Portfolio.json @@ -1,10 +1,10 @@ [ { "projectName":"Steam ON", - "projectImage":"", + "projectImage":"https://pbs.twimg.com/media/GMDjGlkXEAAtF3j?format=jpg&name=large", "projectDescription":"", "projectTags":["React","Typescript","NextJS 14", "Shadcn/ui", "Tailwind"], - "projectURL":"", + "projectURL":"https://steam-on.vercel.app/", "githubUrl":"", "inProgress":true }, diff --git a/components/Pages/Portfolio/Portfolio.style.tsx b/components/Pages/Portfolio/Portfolio.style.tsx index a8637c8..c98ccc9 100644 --- a/components/Pages/Portfolio/Portfolio.style.tsx +++ b/components/Pages/Portfolio/Portfolio.style.tsx @@ -65,8 +65,10 @@ export const PortfolioItem = styled.section` color:#11d822; z-index:100; font-weight: bold; + text-shadow:0px 3px 2px #26b545; &.red{ - color:#929292; + color:#b2b2b2; + text-shadow:0px 2px 2px #8e0000; } } &:hover { diff --git a/components/Pages/Portfolio/PortfolioCard.tsx b/components/Pages/Portfolio/PortfolioCard.tsx index 8ccac3b..4b9303e 100644 --- a/components/Pages/Portfolio/PortfolioCard.tsx +++ b/components/Pages/Portfolio/PortfolioCard.tsx @@ -25,9 +25,10 @@ const PortfolioCardsList = () => { } - {portfolio.inProgress && #WIP || - - Not active development } + {portfolio.inProgress && + #WIP || + + Finished Project } {portfolio.projectImage && } {portfolio.projectName} diff --git a/components/Pages/Portfolio/index.tsx b/components/Pages/Portfolio/index.tsx index bba713c..341d4d5 100644 --- a/components/Pages/Portfolio/index.tsx +++ b/components/Pages/Portfolio/index.tsx @@ -16,10 +16,10 @@ export const Portfolio: React.FC = () => {

Portfolio Projects

-
+

Projects using public APIs for studying purposes about Front-end in general, - ReactJS, NextJS, and ECMAScript at all -

+ ReactJS, NextJS, and ECMAScript at all. +

diff --git a/lib/registry.tsx b/lib/registry.tsx index fd69932..fca0e7a 100644 --- a/lib/registry.tsx +++ b/lib/registry.tsx @@ -23,7 +23,6 @@ export default function StyledComponentsRegistry({ }) if (typeof window !== 'undefined') return <>{children} - console.log(theme) return ( {children} diff --git a/package.json b/package.json index 44db8db..53fc080 100644 --- a/package.json +++ b/package.json @@ -3,8 +3,6 @@ "private": true, "scripts": { "dev": "next dev", - "build": "next build", - "export": "next export", "build-export": "next build", "start": "next start", "lint": "next lint",