├── .eslintrc.json ├── .gitignore ├── README.md ├── blog ├── components │ ├── Code.tsx │ ├── Codeblock.tsx │ └── index.tsx └── content │ ├── best-things-to-do-in-san-francisco.mdx │ ├── how-to-use-c++.mdx │ ├── the-future-css-in-js.mdx │ └── top-languages.mdx ├── components ├── animations │ ├── layout.tsx │ └── section.tsx ├── content │ ├── home │ │ └── index.tsx │ └── projects │ │ ├── index.tsx │ │ └── utils.ts ├── footer │ └── index.tsx ├── hooks │ └── useCopyToClipboard.ts ├── icons │ ├── chevron-icon.tsx │ ├── copy-icon.tsx │ ├── dark-icon.tsx │ ├── github-icon.tsx │ ├── light-icon.tsx │ ├── link-icon.tsx │ ├── linkedin-icon.tsx │ ├── logo-icon.tsx │ └── search-icon.tsx ├── layout │ ├── article-layout.tsx │ ├── blog-layout.tsx │ └── main-layout.tsx ├── navbar │ ├── index.tsx │ └── toggle.tsx ├── styles │ ├── box.ts │ ├── flex.ts │ ├── grid.ts │ └── svg.ts └── utils │ └── timeago.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── blog │ ├── [slug].tsx │ └── index.tsx ├── index.tsx ├── projects.tsx └── projects │ └── [project].tsx ├── public ├── Checkers.png ├── Dashboard.png ├── Design-System.png ├── Dokploy.png ├── Drawflow-Sentences.png ├── E-Commerce.png ├── Fithes.png ├── Funding.png ├── Gif-App.png ├── Heroes-App.png ├── Landing.png ├── Lottery.png ├── Maze-Rat.png ├── Portfolio-2.png ├── Portfolio.png ├── Prefixer.png ├── RippleUI.png ├── favicon.ico ├── pic.png ├── switch-off.mp3 ├── switch-on.mp3 └── vercel.svg ├── styles ├── globals.css └── playground.css └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/README.md -------------------------------------------------------------------------------- /blog/components/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/blog/components/Code.tsx -------------------------------------------------------------------------------- /blog/components/Codeblock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/blog/components/Codeblock.tsx -------------------------------------------------------------------------------- /blog/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/blog/components/index.tsx -------------------------------------------------------------------------------- /blog/content/best-things-to-do-in-san-francisco.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/blog/content/best-things-to-do-in-san-francisco.mdx -------------------------------------------------------------------------------- /blog/content/how-to-use-c++.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/blog/content/how-to-use-c++.mdx -------------------------------------------------------------------------------- /blog/content/the-future-css-in-js.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/blog/content/the-future-css-in-js.mdx -------------------------------------------------------------------------------- /blog/content/top-languages.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/blog/content/top-languages.mdx -------------------------------------------------------------------------------- /components/animations/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/animations/layout.tsx -------------------------------------------------------------------------------- /components/animations/section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/animations/section.tsx -------------------------------------------------------------------------------- /components/content/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/content/home/index.tsx -------------------------------------------------------------------------------- /components/content/projects/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/content/projects/index.tsx -------------------------------------------------------------------------------- /components/content/projects/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/content/projects/utils.ts -------------------------------------------------------------------------------- /components/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/footer/index.tsx -------------------------------------------------------------------------------- /components/hooks/useCopyToClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/hooks/useCopyToClipboard.ts -------------------------------------------------------------------------------- /components/icons/chevron-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/icons/chevron-icon.tsx -------------------------------------------------------------------------------- /components/icons/copy-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/icons/copy-icon.tsx -------------------------------------------------------------------------------- /components/icons/dark-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/icons/dark-icon.tsx -------------------------------------------------------------------------------- /components/icons/github-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/icons/github-icon.tsx -------------------------------------------------------------------------------- /components/icons/light-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/icons/light-icon.tsx -------------------------------------------------------------------------------- /components/icons/link-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/icons/link-icon.tsx -------------------------------------------------------------------------------- /components/icons/linkedin-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/icons/linkedin-icon.tsx -------------------------------------------------------------------------------- /components/icons/logo-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/icons/logo-icon.tsx -------------------------------------------------------------------------------- /components/icons/search-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/icons/search-icon.tsx -------------------------------------------------------------------------------- /components/layout/article-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/layout/article-layout.tsx -------------------------------------------------------------------------------- /components/layout/blog-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/layout/blog-layout.tsx -------------------------------------------------------------------------------- /components/layout/main-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/layout/main-layout.tsx -------------------------------------------------------------------------------- /components/navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/navbar/index.tsx -------------------------------------------------------------------------------- /components/navbar/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/navbar/toggle.tsx -------------------------------------------------------------------------------- /components/styles/box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/styles/box.ts -------------------------------------------------------------------------------- /components/styles/flex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/styles/flex.ts -------------------------------------------------------------------------------- /components/styles/grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/styles/grid.ts -------------------------------------------------------------------------------- /components/styles/svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/styles/svg.ts -------------------------------------------------------------------------------- /components/utils/timeago.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/components/utils/timeago.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/blog/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/pages/blog/[slug].tsx -------------------------------------------------------------------------------- /pages/blog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/pages/blog/index.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/pages/projects.tsx -------------------------------------------------------------------------------- /pages/projects/[project].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/pages/projects/[project].tsx -------------------------------------------------------------------------------- /public/Checkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Checkers.png -------------------------------------------------------------------------------- /public/Dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Dashboard.png -------------------------------------------------------------------------------- /public/Design-System.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Design-System.png -------------------------------------------------------------------------------- /public/Dokploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Dokploy.png -------------------------------------------------------------------------------- /public/Drawflow-Sentences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Drawflow-Sentences.png -------------------------------------------------------------------------------- /public/E-Commerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/E-Commerce.png -------------------------------------------------------------------------------- /public/Fithes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Fithes.png -------------------------------------------------------------------------------- /public/Funding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Funding.png -------------------------------------------------------------------------------- /public/Gif-App.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Gif-App.png -------------------------------------------------------------------------------- /public/Heroes-App.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Heroes-App.png -------------------------------------------------------------------------------- /public/Landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Landing.png -------------------------------------------------------------------------------- /public/Lottery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Lottery.png -------------------------------------------------------------------------------- /public/Maze-Rat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Maze-Rat.png -------------------------------------------------------------------------------- /public/Portfolio-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Portfolio-2.png -------------------------------------------------------------------------------- /public/Portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Portfolio.png -------------------------------------------------------------------------------- /public/Prefixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/Prefixer.png -------------------------------------------------------------------------------- /public/RippleUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/RippleUI.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/pic.png -------------------------------------------------------------------------------- /public/switch-off.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/switch-off.mp3 -------------------------------------------------------------------------------- /public/switch-on.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/switch-on.mp3 -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/styles/globals.css -------------------------------------------------------------------------------- /styles/playground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/styles/playground.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siumauricio/portfolio/HEAD/tsconfig.json --------------------------------------------------------------------------------