├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .storybook ├── main.js ├── preview-head.html └── preview.jsx ├── .test └── setup.js ├── README.md ├── babel.config.json ├── package.json ├── public ├── _redirects ├── assets │ └── images │ │ └── javascript.svg ├── favicon.ico ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── api │ ├── dados.json │ ├── map-data.js │ ├── map-data.test.js │ ├── map-menu.js │ ├── map-menu.test.js │ ├── map-sections.js │ └── map-sections.test.js ├── components │ ├── Footer │ │ ├── Footer.spec.jsx │ │ ├── index.jsx │ │ ├── stories.jsx │ │ └── styles.js │ ├── GoTop │ │ ├── GoTop.spec.jsx │ │ ├── __snapshots__ │ │ │ └── GoTop.spec.jsx.snap │ │ ├── index.jsx │ │ ├── stories.jsx │ │ └── styles.js │ ├── GridContent │ │ ├── GridContent.spec.jsx │ │ ├── __snapshots__ │ │ │ └── GridContent.spec.jsx.snap │ │ ├── index.jsx │ │ ├── mock.js │ │ ├── stories.jsx │ │ └── styles.js │ ├── GridImage │ │ ├── GridImage.test.jsx │ │ ├── __snapshots__ │ │ │ └── GridImage.test.jsx.snap │ │ ├── index.jsx │ │ ├── mock.js │ │ ├── stories.jsx │ │ └── styles.js │ ├── GridText │ │ ├── GridText.test.jsx │ │ ├── __snapshots__ │ │ │ └── GridText.test.jsx.snap │ │ ├── index.jsx │ │ ├── mock.js │ │ ├── stories.jsx │ │ └── styles.js │ ├── GridTwoColumns │ │ ├── GridTwoColumns.spec.jsx │ │ ├── __snapshots__ │ │ │ └── GridTwoColumns.spec.jsx.snap │ │ ├── index.jsx │ │ ├── mock.js │ │ ├── stories.jsx │ │ └── styles.js │ ├── Heading │ │ ├── Heading.spec.jsx │ │ ├── index.jsx │ │ ├── stories.jsx │ │ └── styles.js │ ├── LogoLink │ │ ├── LogoLink.spec.jsx │ │ ├── __snapshots__ │ │ │ └── LogoLink.spec.jsx.snap │ │ ├── index.jsx │ │ ├── stories.jsx │ │ └── styles.js │ ├── Menu │ │ ├── Menu.spec.jsx │ │ ├── __snapshots__ │ │ │ └── Menu.spec.jsx.snap │ │ ├── index.jsx │ │ ├── stories.jsx │ │ └── styles.js │ ├── MenuLink │ │ ├── Menu.spec.jsx │ │ ├── index.jsx │ │ ├── stories.jsx │ │ └── styles.js │ ├── NavLinks │ │ ├── NavLinks.spec.jsx │ │ ├── __snapshots__ │ │ │ └── NavLinks.spec.jsx.snap │ │ ├── index.jsx │ │ ├── mock.js │ │ ├── stories.jsx │ │ └── styles.js │ ├── SectionBackground │ │ ├── SectionBackground.spec.jsx │ │ ├── __snapshots__ │ │ │ └── SectionBackground.spec.jsx.snap │ │ ├── index.jsx │ │ ├── stories.jsx │ │ └── styles.js │ ├── SectionContainer │ │ ├── SectionContainer.spec.jsx │ │ ├── __snapshots__ │ │ │ └── SectionContainer.spec.jsx.snap │ │ ├── index.jsx │ │ ├── stories.jsx │ │ └── styles.js │ └── TextComponent │ │ ├── TextComponent.spec.jsx │ │ ├── __snapshots__ │ │ └── TextComponent.spec.jsx.snap │ │ ├── index.jsx │ │ ├── stories.jsx │ │ └── styles.js ├── config │ └── index.js ├── fonts │ ├── montserrat-v24-latin │ │ ├── montserrat-v24-latin-900.woff │ │ ├── montserrat-v24-latin-900.woff2 │ │ ├── montserrat-v24-latin-900italic.woff │ │ └── montserrat-v24-latin-900italic.woff2 │ └── open-sans-v29-latin │ │ ├── open-sans-v29-latin-700.woff │ │ ├── open-sans-v29-latin-700.woff2 │ │ ├── open-sans-v29-latin-700italic.woff │ │ ├── open-sans-v29-latin-700italic.woff2 │ │ ├── open-sans-v29-latin-italic.woff │ │ ├── open-sans-v29-latin-italic.woff2 │ │ ├── open-sans-v29-latin-regular.woff │ │ └── open-sans-v29-latin-regular.woff2 ├── index.html ├── index.jsx ├── styles │ ├── global-styles.js │ ├── render-theme.jsx │ └── theme.js └── templates │ ├── Base │ ├── __snapshots__ │ │ └── test.jsx.snap │ ├── index.jsx │ ├── mock.jsx │ ├── stories.jsx │ ├── styles.js │ └── test.jsx │ ├── Home │ ├── Home.spec.jsx │ ├── index.jsx │ └── styles.js │ ├── Loading │ ├── index.jsx │ └── styles.js │ └── PageNotFound │ └── index.jsx └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/.storybook/preview.jsx -------------------------------------------------------------------------------- /.test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/.test/setup.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/babel.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/assets/images/javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/public/assets/images/javascript.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/api/dados.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/api/dados.json -------------------------------------------------------------------------------- /src/api/map-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/api/map-data.js -------------------------------------------------------------------------------- /src/api/map-data.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/api/map-data.test.js -------------------------------------------------------------------------------- /src/api/map-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/api/map-menu.js -------------------------------------------------------------------------------- /src/api/map-menu.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/api/map-menu.test.js -------------------------------------------------------------------------------- /src/api/map-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/api/map-sections.js -------------------------------------------------------------------------------- /src/api/map-sections.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/api/map-sections.test.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/Footer/Footer.spec.jsx -------------------------------------------------------------------------------- /src/components/Footer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/Footer/index.jsx -------------------------------------------------------------------------------- /src/components/Footer/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/Footer/stories.jsx -------------------------------------------------------------------------------- /src/components/Footer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/Footer/styles.js -------------------------------------------------------------------------------- /src/components/GoTop/GoTop.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GoTop/GoTop.spec.jsx -------------------------------------------------------------------------------- /src/components/GoTop/__snapshots__/GoTop.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GoTop/__snapshots__/GoTop.spec.jsx.snap -------------------------------------------------------------------------------- /src/components/GoTop/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GoTop/index.jsx -------------------------------------------------------------------------------- /src/components/GoTop/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GoTop/stories.jsx -------------------------------------------------------------------------------- /src/components/GoTop/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GoTop/styles.js -------------------------------------------------------------------------------- /src/components/GridContent/GridContent.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridContent/GridContent.spec.jsx -------------------------------------------------------------------------------- /src/components/GridContent/__snapshots__/GridContent.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridContent/__snapshots__/GridContent.spec.jsx.snap -------------------------------------------------------------------------------- /src/components/GridContent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridContent/index.jsx -------------------------------------------------------------------------------- /src/components/GridContent/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridContent/mock.js -------------------------------------------------------------------------------- /src/components/GridContent/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridContent/stories.jsx -------------------------------------------------------------------------------- /src/components/GridContent/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridContent/styles.js -------------------------------------------------------------------------------- /src/components/GridImage/GridImage.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridImage/GridImage.test.jsx -------------------------------------------------------------------------------- /src/components/GridImage/__snapshots__/GridImage.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridImage/__snapshots__/GridImage.test.jsx.snap -------------------------------------------------------------------------------- /src/components/GridImage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridImage/index.jsx -------------------------------------------------------------------------------- /src/components/GridImage/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridImage/mock.js -------------------------------------------------------------------------------- /src/components/GridImage/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridImage/stories.jsx -------------------------------------------------------------------------------- /src/components/GridImage/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridImage/styles.js -------------------------------------------------------------------------------- /src/components/GridText/GridText.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridText/GridText.test.jsx -------------------------------------------------------------------------------- /src/components/GridText/__snapshots__/GridText.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridText/__snapshots__/GridText.test.jsx.snap -------------------------------------------------------------------------------- /src/components/GridText/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridText/index.jsx -------------------------------------------------------------------------------- /src/components/GridText/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridText/mock.js -------------------------------------------------------------------------------- /src/components/GridText/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridText/stories.jsx -------------------------------------------------------------------------------- /src/components/GridText/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridText/styles.js -------------------------------------------------------------------------------- /src/components/GridTwoColumns/GridTwoColumns.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridTwoColumns/GridTwoColumns.spec.jsx -------------------------------------------------------------------------------- /src/components/GridTwoColumns/__snapshots__/GridTwoColumns.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridTwoColumns/__snapshots__/GridTwoColumns.spec.jsx.snap -------------------------------------------------------------------------------- /src/components/GridTwoColumns/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridTwoColumns/index.jsx -------------------------------------------------------------------------------- /src/components/GridTwoColumns/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridTwoColumns/mock.js -------------------------------------------------------------------------------- /src/components/GridTwoColumns/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridTwoColumns/stories.jsx -------------------------------------------------------------------------------- /src/components/GridTwoColumns/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/GridTwoColumns/styles.js -------------------------------------------------------------------------------- /src/components/Heading/Heading.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/Heading/Heading.spec.jsx -------------------------------------------------------------------------------- /src/components/Heading/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/Heading/index.jsx -------------------------------------------------------------------------------- /src/components/Heading/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/Heading/stories.jsx -------------------------------------------------------------------------------- /src/components/Heading/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/Heading/styles.js -------------------------------------------------------------------------------- /src/components/LogoLink/LogoLink.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/LogoLink/LogoLink.spec.jsx -------------------------------------------------------------------------------- /src/components/LogoLink/__snapshots__/LogoLink.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/LogoLink/__snapshots__/LogoLink.spec.jsx.snap -------------------------------------------------------------------------------- /src/components/LogoLink/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/LogoLink/index.jsx -------------------------------------------------------------------------------- /src/components/LogoLink/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/LogoLink/stories.jsx -------------------------------------------------------------------------------- /src/components/LogoLink/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/LogoLink/styles.js -------------------------------------------------------------------------------- /src/components/Menu/Menu.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/Menu/Menu.spec.jsx -------------------------------------------------------------------------------- /src/components/Menu/__snapshots__/Menu.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/Menu/__snapshots__/Menu.spec.jsx.snap -------------------------------------------------------------------------------- /src/components/Menu/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/Menu/index.jsx -------------------------------------------------------------------------------- /src/components/Menu/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/Menu/stories.jsx -------------------------------------------------------------------------------- /src/components/Menu/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/Menu/styles.js -------------------------------------------------------------------------------- /src/components/MenuLink/Menu.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/MenuLink/Menu.spec.jsx -------------------------------------------------------------------------------- /src/components/MenuLink/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/MenuLink/index.jsx -------------------------------------------------------------------------------- /src/components/MenuLink/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/MenuLink/stories.jsx -------------------------------------------------------------------------------- /src/components/MenuLink/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/MenuLink/styles.js -------------------------------------------------------------------------------- /src/components/NavLinks/NavLinks.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/NavLinks/NavLinks.spec.jsx -------------------------------------------------------------------------------- /src/components/NavLinks/__snapshots__/NavLinks.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/NavLinks/__snapshots__/NavLinks.spec.jsx.snap -------------------------------------------------------------------------------- /src/components/NavLinks/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/NavLinks/index.jsx -------------------------------------------------------------------------------- /src/components/NavLinks/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/NavLinks/mock.js -------------------------------------------------------------------------------- /src/components/NavLinks/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/NavLinks/stories.jsx -------------------------------------------------------------------------------- /src/components/NavLinks/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/NavLinks/styles.js -------------------------------------------------------------------------------- /src/components/SectionBackground/SectionBackground.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/SectionBackground/SectionBackground.spec.jsx -------------------------------------------------------------------------------- /src/components/SectionBackground/__snapshots__/SectionBackground.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/SectionBackground/__snapshots__/SectionBackground.spec.jsx.snap -------------------------------------------------------------------------------- /src/components/SectionBackground/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/SectionBackground/index.jsx -------------------------------------------------------------------------------- /src/components/SectionBackground/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/SectionBackground/stories.jsx -------------------------------------------------------------------------------- /src/components/SectionBackground/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/SectionBackground/styles.js -------------------------------------------------------------------------------- /src/components/SectionContainer/SectionContainer.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/SectionContainer/SectionContainer.spec.jsx -------------------------------------------------------------------------------- /src/components/SectionContainer/__snapshots__/SectionContainer.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/SectionContainer/__snapshots__/SectionContainer.spec.jsx.snap -------------------------------------------------------------------------------- /src/components/SectionContainer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/SectionContainer/index.jsx -------------------------------------------------------------------------------- /src/components/SectionContainer/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/SectionContainer/stories.jsx -------------------------------------------------------------------------------- /src/components/SectionContainer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/SectionContainer/styles.js -------------------------------------------------------------------------------- /src/components/TextComponent/TextComponent.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/TextComponent/TextComponent.spec.jsx -------------------------------------------------------------------------------- /src/components/TextComponent/__snapshots__/TextComponent.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/TextComponent/__snapshots__/TextComponent.spec.jsx.snap -------------------------------------------------------------------------------- /src/components/TextComponent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/TextComponent/index.jsx -------------------------------------------------------------------------------- /src/components/TextComponent/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/TextComponent/stories.jsx -------------------------------------------------------------------------------- /src/components/TextComponent/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/components/TextComponent/styles.js -------------------------------------------------------------------------------- /src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/config/index.js -------------------------------------------------------------------------------- /src/fonts/montserrat-v24-latin/montserrat-v24-latin-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/fonts/montserrat-v24-latin/montserrat-v24-latin-900.woff -------------------------------------------------------------------------------- /src/fonts/montserrat-v24-latin/montserrat-v24-latin-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/fonts/montserrat-v24-latin/montserrat-v24-latin-900.woff2 -------------------------------------------------------------------------------- /src/fonts/montserrat-v24-latin/montserrat-v24-latin-900italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/fonts/montserrat-v24-latin/montserrat-v24-latin-900italic.woff -------------------------------------------------------------------------------- /src/fonts/montserrat-v24-latin/montserrat-v24-latin-900italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/fonts/montserrat-v24-latin/montserrat-v24-latin-900italic.woff2 -------------------------------------------------------------------------------- /src/fonts/open-sans-v29-latin/open-sans-v29-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/fonts/open-sans-v29-latin/open-sans-v29-latin-700.woff -------------------------------------------------------------------------------- /src/fonts/open-sans-v29-latin/open-sans-v29-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/fonts/open-sans-v29-latin/open-sans-v29-latin-700.woff2 -------------------------------------------------------------------------------- /src/fonts/open-sans-v29-latin/open-sans-v29-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/fonts/open-sans-v29-latin/open-sans-v29-latin-700italic.woff -------------------------------------------------------------------------------- /src/fonts/open-sans-v29-latin/open-sans-v29-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/fonts/open-sans-v29-latin/open-sans-v29-latin-700italic.woff2 -------------------------------------------------------------------------------- /src/fonts/open-sans-v29-latin/open-sans-v29-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/fonts/open-sans-v29-latin/open-sans-v29-latin-italic.woff -------------------------------------------------------------------------------- /src/fonts/open-sans-v29-latin/open-sans-v29-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/fonts/open-sans-v29-latin/open-sans-v29-latin-italic.woff2 -------------------------------------------------------------------------------- /src/fonts/open-sans-v29-latin/open-sans-v29-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/fonts/open-sans-v29-latin/open-sans-v29-latin-regular.woff -------------------------------------------------------------------------------- /src/fonts/open-sans-v29-latin/open-sans-v29-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/fonts/open-sans-v29-latin/open-sans-v29-latin-regular.woff2 -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/styles/global-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/styles/global-styles.js -------------------------------------------------------------------------------- /src/styles/render-theme.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/styles/render-theme.jsx -------------------------------------------------------------------------------- /src/styles/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/styles/theme.js -------------------------------------------------------------------------------- /src/templates/Base/__snapshots__/test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/templates/Base/__snapshots__/test.jsx.snap -------------------------------------------------------------------------------- /src/templates/Base/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/templates/Base/index.jsx -------------------------------------------------------------------------------- /src/templates/Base/mock.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/templates/Base/mock.jsx -------------------------------------------------------------------------------- /src/templates/Base/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/templates/Base/stories.jsx -------------------------------------------------------------------------------- /src/templates/Base/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/templates/Base/styles.js -------------------------------------------------------------------------------- /src/templates/Base/test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/templates/Base/test.jsx -------------------------------------------------------------------------------- /src/templates/Home/Home.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/templates/Home/Home.spec.jsx -------------------------------------------------------------------------------- /src/templates/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/templates/Home/index.jsx -------------------------------------------------------------------------------- /src/templates/Home/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/templates/Home/styles.js -------------------------------------------------------------------------------- /src/templates/Loading/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/templates/Loading/index.jsx -------------------------------------------------------------------------------- /src/templates/Loading/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/templates/Loading/styles.js -------------------------------------------------------------------------------- /src/templates/PageNotFound/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/src/templates/PageNotFound/index.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/curso-reactjs-nextjs-project-3-2022/HEAD/vite.config.js --------------------------------------------------------------------------------