├── .gitignore ├── .prettierrc.json ├── README.md ├── modules └── locomotive-scroll.d.ts ├── next-env.d.ts ├── package.json ├── pages ├── _app.tsx └── index.tsx ├── public ├── svg │ ├── anpr-icon.svg │ ├── door-icon.svg │ ├── eye-icon.svg │ ├── facebook-icon.svg │ ├── faces-icon.svg │ ├── heatrow-logo.svg │ ├── instagram-icon.svg │ ├── linkedIn-icon.svg │ ├── quoute-icon.svg │ ├── smart-icon.svg │ ├── twitter-icon.svg │ └── wifi-icon.svg └── webp │ ├── header-bg.webp │ ├── maple.webp │ ├── oak-bg.webp │ ├── oakville-bg.webp │ └── villa-bg.webp ├── styles ├── _base.scss ├── _typography.scss ├── abstract │ ├── _mixins.scss │ └── _variables.scss ├── global.scss └── pages │ └── _home.scss └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/README.md -------------------------------------------------------------------------------- /modules/locomotive-scroll.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'locomotive-scroll' -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/svg/anpr-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/svg/anpr-icon.svg -------------------------------------------------------------------------------- /public/svg/door-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/svg/door-icon.svg -------------------------------------------------------------------------------- /public/svg/eye-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/svg/eye-icon.svg -------------------------------------------------------------------------------- /public/svg/facebook-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/svg/facebook-icon.svg -------------------------------------------------------------------------------- /public/svg/faces-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/svg/faces-icon.svg -------------------------------------------------------------------------------- /public/svg/heatrow-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/svg/heatrow-logo.svg -------------------------------------------------------------------------------- /public/svg/instagram-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/svg/instagram-icon.svg -------------------------------------------------------------------------------- /public/svg/linkedIn-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/svg/linkedIn-icon.svg -------------------------------------------------------------------------------- /public/svg/quoute-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/svg/quoute-icon.svg -------------------------------------------------------------------------------- /public/svg/smart-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/svg/smart-icon.svg -------------------------------------------------------------------------------- /public/svg/twitter-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/svg/twitter-icon.svg -------------------------------------------------------------------------------- /public/svg/wifi-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/svg/wifi-icon.svg -------------------------------------------------------------------------------- /public/webp/header-bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/webp/header-bg.webp -------------------------------------------------------------------------------- /public/webp/maple.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/webp/maple.webp -------------------------------------------------------------------------------- /public/webp/oak-bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/webp/oak-bg.webp -------------------------------------------------------------------------------- /public/webp/oakville-bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/webp/oakville-bg.webp -------------------------------------------------------------------------------- /public/webp/villa-bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/public/webp/villa-bg.webp -------------------------------------------------------------------------------- /styles/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/styles/_base.scss -------------------------------------------------------------------------------- /styles/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/styles/_typography.scss -------------------------------------------------------------------------------- /styles/abstract/_mixins.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/abstract/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/styles/abstract/_variables.scss -------------------------------------------------------------------------------- /styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/styles/global.scss -------------------------------------------------------------------------------- /styles/pages/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/styles/pages/_home.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeolaadeoti/heatrow/HEAD/tsconfig.json --------------------------------------------------------------------------------