├── .editorconfig ├── .eslintrc.js ├── .github └── banner.png ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README-pt.md ├── README.md ├── next.config.js ├── package.json ├── public ├── assets │ ├── discord.svg │ ├── icons │ │ ├── discord.svg │ │ ├── github.svg │ │ ├── linkedin.svg │ │ ├── mail.svg │ │ └── resume.svg │ ├── projects │ │ ├── cristian-links.png │ │ ├── cristian-os.png │ │ ├── meme-creator.png │ │ ├── portfolio.png │ │ ├── qr-code-generator.png │ │ ├── quizzed.png │ │ ├── studay.png │ │ ├── subscript-api.png │ │ └── subscript.png │ └── skills │ │ ├── css.svg │ │ ├── figma.svg │ │ ├── git.svg │ │ ├── github.svg │ │ ├── go.svg │ │ ├── html.svg │ │ ├── js.svg │ │ ├── next.svg │ │ ├── prisma.svg │ │ ├── python.svg │ │ ├── react.svg │ │ ├── styled-components.svg │ │ ├── tailwind.svg │ │ ├── ts.svg │ │ └── vscode.svg ├── documents │ └── resume.pdf └── images │ └── profile.jpeg ├── src ├── app │ ├── (home) │ │ ├── page.tsx │ │ └── styles.ts │ ├── (not-found) │ │ └── styles.ts │ ├── about │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── styles.ts │ ├── client-layout.tsx │ ├── contact │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── styles.ts │ ├── favicon.ico │ ├── layout.tsx │ ├── not-found.tsx │ ├── projects │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── styles.ts │ ├── skills │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── styles.ts │ └── styles.ts ├── components │ ├── Button │ │ ├── index.tsx │ │ └── styles.ts │ ├── ContactLinks │ │ ├── constants.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── ExperienceCard │ │ ├── ExperienceCardDescription │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── ExperienceCardHeader │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── ExperienceCardInfo │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── ExperienceCardRoot │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ └── index.tsx │ ├── Footer │ │ ├── index.tsx │ │ └── styles.ts │ ├── Header │ │ ├── index.tsx │ │ └── styles.ts │ ├── Line │ │ ├── index.tsx │ │ └── styles.ts │ ├── ProjectCard │ │ ├── index.tsx │ │ └── styles.ts │ ├── Separator │ │ ├── index.tsx │ │ └── styles.ts │ ├── SkillsItem │ │ ├── index.tsx │ │ └── styles.ts │ └── SocialLinks │ │ ├── index.tsx │ │ └── styles.ts ├── data │ ├── experiences.ts │ ├── projects.ts │ └── skills.ts ├── lib │ └── registry.tsx ├── styles │ ├── GlobalStyle.ts │ ├── styled.d.ts │ ├── theme.ts │ └── utils.ts └── types │ └── index.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/.github/banner.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/.prettierrc -------------------------------------------------------------------------------- /README-pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/README-pt.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/discord.svg -------------------------------------------------------------------------------- /public/assets/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/icons/discord.svg -------------------------------------------------------------------------------- /public/assets/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/icons/github.svg -------------------------------------------------------------------------------- /public/assets/icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/icons/linkedin.svg -------------------------------------------------------------------------------- /public/assets/icons/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/icons/mail.svg -------------------------------------------------------------------------------- /public/assets/icons/resume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/icons/resume.svg -------------------------------------------------------------------------------- /public/assets/projects/cristian-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/projects/cristian-links.png -------------------------------------------------------------------------------- /public/assets/projects/cristian-os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/projects/cristian-os.png -------------------------------------------------------------------------------- /public/assets/projects/meme-creator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/projects/meme-creator.png -------------------------------------------------------------------------------- /public/assets/projects/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/projects/portfolio.png -------------------------------------------------------------------------------- /public/assets/projects/qr-code-generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/projects/qr-code-generator.png -------------------------------------------------------------------------------- /public/assets/projects/quizzed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/projects/quizzed.png -------------------------------------------------------------------------------- /public/assets/projects/studay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/projects/studay.png -------------------------------------------------------------------------------- /public/assets/projects/subscript-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/projects/subscript-api.png -------------------------------------------------------------------------------- /public/assets/projects/subscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/projects/subscript.png -------------------------------------------------------------------------------- /public/assets/skills/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/css.svg -------------------------------------------------------------------------------- /public/assets/skills/figma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/figma.svg -------------------------------------------------------------------------------- /public/assets/skills/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/git.svg -------------------------------------------------------------------------------- /public/assets/skills/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/github.svg -------------------------------------------------------------------------------- /public/assets/skills/go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/go.svg -------------------------------------------------------------------------------- /public/assets/skills/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/html.svg -------------------------------------------------------------------------------- /public/assets/skills/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/js.svg -------------------------------------------------------------------------------- /public/assets/skills/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/next.svg -------------------------------------------------------------------------------- /public/assets/skills/prisma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/prisma.svg -------------------------------------------------------------------------------- /public/assets/skills/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/python.svg -------------------------------------------------------------------------------- /public/assets/skills/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/react.svg -------------------------------------------------------------------------------- /public/assets/skills/styled-components.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/styled-components.svg -------------------------------------------------------------------------------- /public/assets/skills/tailwind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/tailwind.svg -------------------------------------------------------------------------------- /public/assets/skills/ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/ts.svg -------------------------------------------------------------------------------- /public/assets/skills/vscode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/assets/skills/vscode.svg -------------------------------------------------------------------------------- /public/documents/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/documents/resume.pdf -------------------------------------------------------------------------------- /public/images/profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/public/images/profile.jpeg -------------------------------------------------------------------------------- /src/app/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/(home)/page.tsx -------------------------------------------------------------------------------- /src/app/(home)/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/(home)/styles.ts -------------------------------------------------------------------------------- /src/app/(not-found)/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/(not-found)/styles.ts -------------------------------------------------------------------------------- /src/app/about/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/about/layout.tsx -------------------------------------------------------------------------------- /src/app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/about/page.tsx -------------------------------------------------------------------------------- /src/app/about/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/about/styles.ts -------------------------------------------------------------------------------- /src/app/client-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/client-layout.tsx -------------------------------------------------------------------------------- /src/app/contact/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/contact/layout.tsx -------------------------------------------------------------------------------- /src/app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/contact/page.tsx -------------------------------------------------------------------------------- /src/app/contact/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/contact/styles.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/projects/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/projects/layout.tsx -------------------------------------------------------------------------------- /src/app/projects/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/projects/page.tsx -------------------------------------------------------------------------------- /src/app/projects/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/projects/styles.ts -------------------------------------------------------------------------------- /src/app/skills/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/skills/layout.tsx -------------------------------------------------------------------------------- /src/app/skills/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/skills/page.tsx -------------------------------------------------------------------------------- /src/app/skills/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/skills/styles.ts -------------------------------------------------------------------------------- /src/app/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/app/styles.ts -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Button/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/Button/styles.ts -------------------------------------------------------------------------------- /src/components/ContactLinks/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ContactLinks/constants.ts -------------------------------------------------------------------------------- /src/components/ContactLinks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ContactLinks/index.tsx -------------------------------------------------------------------------------- /src/components/ContactLinks/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ContactLinks/styles.ts -------------------------------------------------------------------------------- /src/components/ExperienceCard/ExperienceCardDescription/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ExperienceCard/ExperienceCardDescription/index.tsx -------------------------------------------------------------------------------- /src/components/ExperienceCard/ExperienceCardDescription/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ExperienceCard/ExperienceCardDescription/styles.ts -------------------------------------------------------------------------------- /src/components/ExperienceCard/ExperienceCardHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ExperienceCard/ExperienceCardHeader/index.tsx -------------------------------------------------------------------------------- /src/components/ExperienceCard/ExperienceCardHeader/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ExperienceCard/ExperienceCardHeader/styles.ts -------------------------------------------------------------------------------- /src/components/ExperienceCard/ExperienceCardInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ExperienceCard/ExperienceCardInfo/index.tsx -------------------------------------------------------------------------------- /src/components/ExperienceCard/ExperienceCardInfo/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ExperienceCard/ExperienceCardInfo/styles.ts -------------------------------------------------------------------------------- /src/components/ExperienceCard/ExperienceCardRoot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ExperienceCard/ExperienceCardRoot/index.tsx -------------------------------------------------------------------------------- /src/components/ExperienceCard/ExperienceCardRoot/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ExperienceCard/ExperienceCardRoot/styles.ts -------------------------------------------------------------------------------- /src/components/ExperienceCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ExperienceCard/index.tsx -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/Footer/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/Footer/styles.ts -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Header/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/Header/styles.ts -------------------------------------------------------------------------------- /src/components/Line/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/Line/index.tsx -------------------------------------------------------------------------------- /src/components/Line/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/Line/styles.ts -------------------------------------------------------------------------------- /src/components/ProjectCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ProjectCard/index.tsx -------------------------------------------------------------------------------- /src/components/ProjectCard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/ProjectCard/styles.ts -------------------------------------------------------------------------------- /src/components/Separator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/Separator/index.tsx -------------------------------------------------------------------------------- /src/components/Separator/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/Separator/styles.ts -------------------------------------------------------------------------------- /src/components/SkillsItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/SkillsItem/index.tsx -------------------------------------------------------------------------------- /src/components/SkillsItem/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/SkillsItem/styles.ts -------------------------------------------------------------------------------- /src/components/SocialLinks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/SocialLinks/index.tsx -------------------------------------------------------------------------------- /src/components/SocialLinks/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/components/SocialLinks/styles.ts -------------------------------------------------------------------------------- /src/data/experiences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/data/experiences.ts -------------------------------------------------------------------------------- /src/data/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/data/projects.ts -------------------------------------------------------------------------------- /src/data/skills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/data/skills.ts -------------------------------------------------------------------------------- /src/lib/registry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/lib/registry.tsx -------------------------------------------------------------------------------- /src/styles/GlobalStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/styles/GlobalStyle.ts -------------------------------------------------------------------------------- /src/styles/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/styles/styled.d.ts -------------------------------------------------------------------------------- /src/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/styles/theme.ts -------------------------------------------------------------------------------- /src/styles/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/styles/utils.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristian-sbardelotto/portfolio/HEAD/tsconfig.json --------------------------------------------------------------------------------