Skip to content

Commit

Permalink
- update steam on url
Browse files Browse the repository at this point in the history
  • Loading branch information
andrecrjr committed Apr 26, 2024
1 parent 347c231 commit 5336dfb
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"jest": true
},
"rules": {
"react/no-unescaped-entities":"off"
"react/no-unescaped-entities":"off",
"no-console": "warn"
}
}
1 change: 0 additions & 1 deletion components/Pages/AboutMe/Experience/Experience.style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export const ExperienceSection = styled.section`
font-size: 1.1rem;
margin-top: 1rem;
}
}
.experience__section--button{
margin-top: 4rem;
Expand Down
4 changes: 2 additions & 2 deletions components/Pages/Portfolio/Portfolio.json
Original file line number Diff line number Diff line change
@@ -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
},
Expand Down
4 changes: 3 additions & 1 deletion components/Pages/Portfolio/Portfolio.style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
7 changes: 4 additions & 3 deletions components/Pages/Portfolio/PortfolioCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ const PortfolioCardsList = () => {
</PortfolioSoon>
</PortfolioItem>}
<PortfolioItem key={index}>
{portfolio.inProgress && <span className="portfolio--wip" title="This website still being in active development">#WIP</span> ||
<span className="portfolio--wip red">
Not active development </span>}
{portfolio.inProgress &&
<span className="portfolio--wip" title="This website still being in active development">#WIP</span> ||
<span className="portfolio--wip red" title="This website won't have more improvements or updates. It's finished.">
Finished Project </span>}
{portfolio.projectImage && <PortfolioItemImage bgImg={portfolio.projectImage} />}
<PortfolioDescriptionContainer>
<PortfolioHeader>{portfolio.projectName}</PortfolioHeader>
Expand Down
6 changes: 3 additions & 3 deletions components/Pages/Portfolio/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export const Portfolio: React.FC = () => {
<PortfolioContainer id="portfolio">
<PortfolioPresentation data-aos="fade-up">
<div className="portfolio--title"><h2>Portfolio Projects</h2></div>
<div className="portfolio--description">
<p className="portfolio--description">
Projects using public APIs for studying purposes about Front-end in general,
ReactJS, NextJS, and ECMAScript at all
</div>
ReactJS, NextJS, and ECMAScript at all.
</p>
</PortfolioPresentation>
<PortfolioCardsList />
</PortfolioContainer>
Expand Down
1 change: 0 additions & 1 deletion lib/registry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export default function StyledComponentsRegistry({
})

if (typeof window !== 'undefined') return <>{children}</>
console.log(theme)
return (
<StyleSheetManager sheet={styledComponentsStyleSheet.instance}>
{children}
Expand Down
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 5336dfb

Please sign in to comment.