├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── full-sample.png ├── package.json ├── public ├── favicon.svg ├── index.html ├── robots.txt └── sample.png ├── src ├── App.tsx ├── Components │ ├── About.tsx │ ├── Footer.tsx │ ├── Header.tsx │ ├── SectionFive.tsx │ ├── SectionFour.tsx │ ├── SectionOne.tsx │ ├── SectionThree.tsx │ └── SectionTwo.tsx ├── Images │ ├── lime-bicycle-riding.png │ ├── lime-canoeing.png │ ├── lime-ecology.png │ ├── lime-message-sent.png │ ├── lime-surfing.png │ ├── lime-travel.png │ └── lime-welcome.png ├── Styles │ ├── About.scss │ ├── Content.scss │ ├── Footer.scss │ ├── Header.scss │ ├── SectionFive.scss │ ├── SectionFour.scss │ ├── SectionOne.scss │ ├── SectionThree.scss │ └── SectionTwo.scss ├── Views │ └── Content.tsx ├── index.scss ├── index.tsx ├── react-app-env.d.ts ├── reportWebVitals.ts └── setupTests.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/README.md -------------------------------------------------------------------------------- /full-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/full-sample.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/public/sample.png -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Components/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Components/About.tsx -------------------------------------------------------------------------------- /src/Components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Components/Footer.tsx -------------------------------------------------------------------------------- /src/Components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Components/Header.tsx -------------------------------------------------------------------------------- /src/Components/SectionFive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Components/SectionFive.tsx -------------------------------------------------------------------------------- /src/Components/SectionFour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Components/SectionFour.tsx -------------------------------------------------------------------------------- /src/Components/SectionOne.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Components/SectionOne.tsx -------------------------------------------------------------------------------- /src/Components/SectionThree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Components/SectionThree.tsx -------------------------------------------------------------------------------- /src/Components/SectionTwo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Components/SectionTwo.tsx -------------------------------------------------------------------------------- /src/Images/lime-bicycle-riding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Images/lime-bicycle-riding.png -------------------------------------------------------------------------------- /src/Images/lime-canoeing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Images/lime-canoeing.png -------------------------------------------------------------------------------- /src/Images/lime-ecology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Images/lime-ecology.png -------------------------------------------------------------------------------- /src/Images/lime-message-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Images/lime-message-sent.png -------------------------------------------------------------------------------- /src/Images/lime-surfing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Images/lime-surfing.png -------------------------------------------------------------------------------- /src/Images/lime-travel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Images/lime-travel.png -------------------------------------------------------------------------------- /src/Images/lime-welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Images/lime-welcome.png -------------------------------------------------------------------------------- /src/Styles/About.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Styles/About.scss -------------------------------------------------------------------------------- /src/Styles/Content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Styles/Content.scss -------------------------------------------------------------------------------- /src/Styles/Footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Styles/Footer.scss -------------------------------------------------------------------------------- /src/Styles/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Styles/Header.scss -------------------------------------------------------------------------------- /src/Styles/SectionFive.scss: -------------------------------------------------------------------------------- 1 | #section-four { 2 | 3 | } -------------------------------------------------------------------------------- /src/Styles/SectionFour.scss: -------------------------------------------------------------------------------- 1 | #section-three { 2 | 3 | } -------------------------------------------------------------------------------- /src/Styles/SectionOne.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Styles/SectionOne.scss -------------------------------------------------------------------------------- /src/Styles/SectionThree.scss: -------------------------------------------------------------------------------- 1 | #section-two { 2 | 3 | } -------------------------------------------------------------------------------- /src/Styles/SectionTwo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Styles/SectionTwo.scss -------------------------------------------------------------------------------- /src/Views/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/Views/Content.tsx -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuseppetm/mantine-template/HEAD/tsconfig.json --------------------------------------------------------------------------------