├── .gitignore ├── LICENSE ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── App.css ├── App.jsx ├── components │ ├── elements │ │ ├── Button.jsx │ │ ├── Card.jsx │ │ ├── Icon.jsx │ │ ├── List.jsx │ │ ├── Nav.jsx │ │ ├── ScrollToTop.jsx │ │ └── SocialLinks.jsx │ └── sections │ │ ├── Contact.jsx │ │ ├── Footer.jsx │ │ ├── Header.jsx │ │ ├── Home.jsx │ │ ├── Stack.jsx │ │ └── Work.jsx ├── contexts │ └── ThemeContext.jsx ├── data.js ├── images │ ├── home.png │ └── logo.png ├── index.css ├── main.jsx └── stylesheets │ ├── elements │ ├── Button.css │ ├── Card.css │ ├── List.css │ ├── Nav.css │ ├── ScrollToTop.css │ └── SocialLinks.css │ ├── sections │ ├── Contact.css │ ├── Footer.css │ ├── Header.css │ ├── Home.css │ ├── Stack.css │ └── Work.css │ └── theme │ └── theme.css └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/elements/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/components/elements/Button.jsx -------------------------------------------------------------------------------- /src/components/elements/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/components/elements/Card.jsx -------------------------------------------------------------------------------- /src/components/elements/Icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/components/elements/Icon.jsx -------------------------------------------------------------------------------- /src/components/elements/List.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/components/elements/List.jsx -------------------------------------------------------------------------------- /src/components/elements/Nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/components/elements/Nav.jsx -------------------------------------------------------------------------------- /src/components/elements/ScrollToTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/components/elements/ScrollToTop.jsx -------------------------------------------------------------------------------- /src/components/elements/SocialLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/components/elements/SocialLinks.jsx -------------------------------------------------------------------------------- /src/components/sections/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/components/sections/Contact.jsx -------------------------------------------------------------------------------- /src/components/sections/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/components/sections/Footer.jsx -------------------------------------------------------------------------------- /src/components/sections/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/components/sections/Header.jsx -------------------------------------------------------------------------------- /src/components/sections/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/components/sections/Home.jsx -------------------------------------------------------------------------------- /src/components/sections/Stack.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/components/sections/Stack.jsx -------------------------------------------------------------------------------- /src/components/sections/Work.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/components/sections/Work.jsx -------------------------------------------------------------------------------- /src/contexts/ThemeContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/contexts/ThemeContext.jsx -------------------------------------------------------------------------------- /src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/data.js -------------------------------------------------------------------------------- /src/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/images/home.png -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/stylesheets/elements/Button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/stylesheets/elements/Button.css -------------------------------------------------------------------------------- /src/stylesheets/elements/Card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/stylesheets/elements/Card.css -------------------------------------------------------------------------------- /src/stylesheets/elements/List.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/stylesheets/elements/List.css -------------------------------------------------------------------------------- /src/stylesheets/elements/Nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/stylesheets/elements/Nav.css -------------------------------------------------------------------------------- /src/stylesheets/elements/ScrollToTop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/stylesheets/elements/ScrollToTop.css -------------------------------------------------------------------------------- /src/stylesheets/elements/SocialLinks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/stylesheets/elements/SocialLinks.css -------------------------------------------------------------------------------- /src/stylesheets/sections/Contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/stylesheets/sections/Contact.css -------------------------------------------------------------------------------- /src/stylesheets/sections/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/stylesheets/sections/Footer.css -------------------------------------------------------------------------------- /src/stylesheets/sections/Header.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stylesheets/sections/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/stylesheets/sections/Home.css -------------------------------------------------------------------------------- /src/stylesheets/sections/Stack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/stylesheets/sections/Stack.css -------------------------------------------------------------------------------- /src/stylesheets/sections/Work.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/stylesheets/sections/Work.css -------------------------------------------------------------------------------- /src/stylesheets/theme/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/src/stylesheets/theme/theme.css -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josnethmoreno/singleton-portfolio/HEAD/vite.config.js --------------------------------------------------------------------------------