├── styles
├── _animation.scss
├── _buttons.scss
├── _fonts.scss
├── _config.scss
├── style.scss
├── _utilities.scss
├── _footer.scss
├── _services.scss
├── _gallery.scss
├── _contact_us.scss
├── _normalize.scss
├── _common.scss
├── _homepage.scss
├── style.css.map
└── style.css
├── public
├── img
│ ├── blueLogo.png
│ ├── headerBg.jpg
│ ├── square.jpg
│ ├── personImg.jpg
│ ├── whiteLogo.png
│ ├── projectsImage.jpg
│ ├── servicesImage.jpg
│ ├── vinyl-floor.jpg
│ ├── project-image-1.jpg
│ ├── project-image-2.jpg
│ ├── project-image-3.jpg
│ ├── project-image-4.jpg
│ ├── project-image-5.jpg
│ ├── project-image-6.jpg
│ ├── project-image-7.jpg
│ ├── project-image-8.jpg
│ ├── project-image-9.jpg
│ ├── projectsImage2.jpg
│ ├── project-image-10.jpg
│ └── project-image-11.jpg
└── favicon_package
│ ├── favicon-16x16.ico
│ ├── favicon-32x32.ico
│ ├── apple-touch-icon.ico
│ ├── mstile-150x150.png
│ ├── android-chrome-192x192.ico
│ ├── android-chrome-256x256.ico
│ ├── browserconfig.xml
│ ├── site.webmanifest
│ └── safari-pinned-tab.svg
├── netlify.toml
├── next.config.js
├── pages
├── _app.js
├── _document.js
├── api
│ └── send.js
├── index.js
├── services.js
├── contactus.js
└── gallery.js
├── README.md
├── components
├── layout.js
├── WhatMore.js
├── WhyWorkWithUs.js
├── header.js
├── WhoAreWe.js
├── ServicesWeOffer.js
├── Testomonials.js
├── ViewOurProjects.js
├── footer.js
└── navbar.js
├── .gitignore
├── package.json
└── css
└── style.css
/styles/_animation.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/styles/_buttons.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/img/blueLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/blueLogo.png
--------------------------------------------------------------------------------
/public/img/headerBg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/headerBg.jpg
--------------------------------------------------------------------------------
/public/img/square.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/square.jpg
--------------------------------------------------------------------------------
/public/img/personImg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/personImg.jpg
--------------------------------------------------------------------------------
/public/img/whiteLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/whiteLogo.png
--------------------------------------------------------------------------------
/netlify.toml:
--------------------------------------------------------------------------------
1 | [build]
2 | command = "npm run build"
3 | functions = "out_functions"
4 | publish = "out_publish"
5 |
--------------------------------------------------------------------------------
/public/img/projectsImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/projectsImage.jpg
--------------------------------------------------------------------------------
/public/img/servicesImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/servicesImage.jpg
--------------------------------------------------------------------------------
/public/img/vinyl-floor.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/vinyl-floor.jpg
--------------------------------------------------------------------------------
/public/img/project-image-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/project-image-1.jpg
--------------------------------------------------------------------------------
/public/img/project-image-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/project-image-2.jpg
--------------------------------------------------------------------------------
/public/img/project-image-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/project-image-3.jpg
--------------------------------------------------------------------------------
/public/img/project-image-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/project-image-4.jpg
--------------------------------------------------------------------------------
/public/img/project-image-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/project-image-5.jpg
--------------------------------------------------------------------------------
/public/img/project-image-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/project-image-6.jpg
--------------------------------------------------------------------------------
/public/img/project-image-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/project-image-7.jpg
--------------------------------------------------------------------------------
/public/img/project-image-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/project-image-8.jpg
--------------------------------------------------------------------------------
/public/img/project-image-9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/project-image-9.jpg
--------------------------------------------------------------------------------
/public/img/projectsImage2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/projectsImage2.jpg
--------------------------------------------------------------------------------
/public/img/project-image-10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/project-image-10.jpg
--------------------------------------------------------------------------------
/public/img/project-image-11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/img/project-image-11.jpg
--------------------------------------------------------------------------------
/public/favicon_package/favicon-16x16.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/favicon_package/favicon-16x16.ico
--------------------------------------------------------------------------------
/public/favicon_package/favicon-32x32.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/favicon_package/favicon-32x32.ico
--------------------------------------------------------------------------------
/public/favicon_package/apple-touch-icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/favicon_package/apple-touch-icon.ico
--------------------------------------------------------------------------------
/public/favicon_package/mstile-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/favicon_package/mstile-150x150.png
--------------------------------------------------------------------------------
/public/favicon_package/android-chrome-192x192.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/favicon_package/android-chrome-192x192.ico
--------------------------------------------------------------------------------
/public/favicon_package/android-chrome-256x256.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LeonChisum/Flooring-company---87-Lux/HEAD/public/favicon_package/android-chrome-256x256.ico
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | const withCSS = require('@zeit/next-css');
2 | const withSass = require('@zeit/next-sass');
3 |
4 | module.exports = withCSS(
5 | withSass({
6 | target: 'serverless',
7 | })
8 | );
9 |
--------------------------------------------------------------------------------
/pages/_app.js:
--------------------------------------------------------------------------------
1 | import Layout from '../components/layout';
2 |
3 | function MyApp({ Component, pageProps }) {
4 | return (
5 |
Get a Quote from us and let’s get started working!
11 | 12 | Get a Quote 13 | 14 |${name} has sent you the following message : ${message}
`, 14 | }; 15 | 16 | try { 17 | await sgMail.send(content); 18 | res.status(200).send('Message sent successfully.'); 19 | } catch (error) { 20 | console.log('API ERROR', error); 21 | res.status(400).send('Message not sent.'); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "app", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "format": "prettier --write \"{,!(.next)/**/}*.{js, jsx}\"", 7 | "dev": "next dev", 8 | "build": "next build", 9 | "start": "next start", 10 | "postbuild": "next-on-netlify" 11 | }, 12 | "dependencies": { 13 | "@sendgrid/mail": "^7.4.0", 14 | "@zeit/next-css": "^1.0.1", 15 | "@zeit/next-sass": "^1.0.1", 16 | "dotenv": "^8.2.0", 17 | "next": "10.0.4", 18 | "next-on-netlify": "^2.8.1", 19 | "node-sass": "^4.12.0", 20 | "react": "17.0.1", 21 | "react-dom": "17.0.1", 22 | "react-icons": "^4.1.0" 23 | }, 24 | "browser": { 25 | "fs": false, 26 | "path": false, 27 | "os": false 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /components/WhyWorkWithUs.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | const WhyWorkWithUs = () => { 4 | return ( 5 |Satisfied Customers
12 |Active Branches
16 |Years of Excellence
20 |24 | As a respectable flooring contractor our mission is to provide an 25 | unparalleled service through our reliable team completing projects 26 | to the highest standards. Our highly skilled team of flooring 27 | specialists have a desire to work alongside our clients on site to 28 | achieve the desired result. 29 |
30 |13 | We offer a wide range of flooring services, and high quality 14 | installation services at affordable prices. 15 |
16 |30 | We offer a substantial list of suppliers, some of which shown below. 31 | We provide competitive prices and ensure the project is completed on 32 | time, on budget and to the required standard. 33 |
34 | Our services 35 |
15 | CEO of Infotech
18 |
31 | CEO of Infotech
34 |
47 | CEO of Infotech
50 |27 | We were very lucky to have the privilege in supplying all the 28 | floor and wall tiles for a house renovation in Reigate this 29 | year.We were very lucky to have the privilege in supplying all the 30 | floor and wall tiles for a house renovation in Reigate this year. 31 |
32 |56 | We were very lucky to have the privilege in supplying all the 57 | floor and wall tiles for a house renovation in Reigate this 58 | year.We were very lucky to have the privilege in supplying all the 59 | floor and wall tiles for a house renovation in Reigate this year. 60 |
61 |51 | We offer a wide range of flooring services, and high quality 52 | installation services at affordable prices. The wide of services we 53 | offer help our customers get what they need, at the highest quality 54 | possible 55 |
56 |70 | Luxury vinyl is one of the most durable flooring options out 71 | there. It can withstand water and moisture, as well as wear and 72 | tear. It is also stain and scratch resistant. This durability 73 | makes it an ideal flooring option. 74 |
75 | 76 | Book Service83 | We offer a wide range of flooring services, and high quality 84 | installation services at affordable prices. The wide of services we 85 | offer help our customers get what they need, at the highest quality 86 | possible. 87 |
88 |89 | As a respectable flooring contractor our aim is to provide an 90 | unparalleled service through our reliable team completing projects 91 | to the highest standards. Our highly skilled team of flooring 92 | specialists will wrong alongside our clients on site to achieve the 93 | desired results. 94 |
95 |107 | You can get started by contacting us and let us know any questions you might have, and we will 108 | get back with you within 24 hours. Hoping to working with you!{' '} 109 |
110 |Please send us your questions, please don’t spam us!
116 |163 | It depends on the type of Floor we install. For example, a Hardwood installation takes 2 164 | days on Average. Get a Quote to know the approximate amount of time we take to finish the 165 | Floor installation. 166 |
167 |176 | It depends on the type of Floor we install. For example, a Hardwood installation takes 2 177 | days on Average. Get a Quote to know the approximate amount of time we take to finish the 178 | Floor installation. 179 |
180 |189 | It depends on the type of Floor we install. For example, a Hardwood installation takes 2 190 | days on Average. Get a Quote to know the approximate amount of time we take to finish the 191 | Floor installation. 192 |
193 |52 | Our Gallery has some of the best projects that we have worked on and 53 | works of our satisfied customers. Take a look at the examples of 54 | work that we do. 55 |
56 | 57 |