├── .devcontainer └── devcontainer.json ├── .eslintrc ├── .gitignore ├── .prettierrc ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md ├── package.json ├── src ├── App.jsx ├── Components │ ├── About.jsx │ ├── Footer.jsx │ ├── Header.jsx │ ├── Home.jsx │ └── Portfolio.jsx ├── images │ ├── design-desk.jpeg │ ├── down-arrow.svg │ ├── motion-background.jpg │ ├── socials │ │ ├── devdotto.svg │ │ ├── envelope.svg │ │ ├── github.svg │ │ ├── instagram.svg │ │ ├── linkedin.svg │ │ ├── medium.svg │ │ ├── microsoft.svg │ │ ├── twitter.svg │ │ └── youtube.svg │ └── woman-with-tablet.jpg ├── index.html ├── index.js └── styles.css └── translations ├── README.md ├── es └── README.md └── pt-BR └── README.md /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/SECURITY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/package.json -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/Components/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/Components/About.jsx -------------------------------------------------------------------------------- /src/Components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/Components/Footer.jsx -------------------------------------------------------------------------------- /src/Components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/Components/Header.jsx -------------------------------------------------------------------------------- /src/Components/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/Components/Home.jsx -------------------------------------------------------------------------------- /src/Components/Portfolio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/Components/Portfolio.jsx -------------------------------------------------------------------------------- /src/images/design-desk.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/images/design-desk.jpeg -------------------------------------------------------------------------------- /src/images/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/images/down-arrow.svg -------------------------------------------------------------------------------- /src/images/motion-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/images/motion-background.jpg -------------------------------------------------------------------------------- /src/images/socials/devdotto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/images/socials/devdotto.svg -------------------------------------------------------------------------------- /src/images/socials/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/images/socials/envelope.svg -------------------------------------------------------------------------------- /src/images/socials/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/images/socials/github.svg -------------------------------------------------------------------------------- /src/images/socials/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/images/socials/instagram.svg -------------------------------------------------------------------------------- /src/images/socials/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/images/socials/linkedin.svg -------------------------------------------------------------------------------- /src/images/socials/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/images/socials/medium.svg -------------------------------------------------------------------------------- /src/images/socials/microsoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/images/socials/microsoft.svg -------------------------------------------------------------------------------- /src/images/socials/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/images/socials/twitter.svg -------------------------------------------------------------------------------- /src/images/socials/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/images/socials/youtube.svg -------------------------------------------------------------------------------- /src/images/woman-with-tablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/images/woman-with-tablet.jpg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/src/styles.css -------------------------------------------------------------------------------- /translations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/translations/README.md -------------------------------------------------------------------------------- /translations/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/translations/es/README.md -------------------------------------------------------------------------------- /translations/pt-BR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-copilot-codespaces-javascript/HEAD/translations/pt-BR/README.md --------------------------------------------------------------------------------