├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── ContactForm.js ├── Footer.js ├── Header.js ├── about │ ├── AboutHeading.js │ ├── AboutSection.js │ ├── BgImageSection.js │ └── ParagraphSection.js ├── index │ ├── BgImageSection.js │ ├── FullScreenImageSection.js │ ├── IntroSection.js │ ├── PartialAboutSection.js │ ├── PartialContactSection.js │ ├── ProcessSection.js │ └── QualitySection.js └── layout.js ├── next.config.js ├── package.json ├── pages ├── _app.js ├── about.js ├── api │ └── hello.js ├── contact.js ├── index.js ├── projects.js └── services.js ├── public ├── favicon.ico ├── logo.png ├── screenshots │ ├── screenshot_1.png │ ├── screenshot_2.png │ ├── screenshot_3.png │ ├── screenshot_4.png │ ├── screenshot_5.png │ ├── screenshot_6.png │ └── screenshot_7.png ├── stock │ ├── orange-couch.jpg │ ├── patio.jpg │ ├── stairs-people.jpg │ └── team.jpg └── vercel.svg └── styles └── globals.css /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/README.md -------------------------------------------------------------------------------- /components/ContactForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/ContactForm.js -------------------------------------------------------------------------------- /components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/Footer.js -------------------------------------------------------------------------------- /components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/Header.js -------------------------------------------------------------------------------- /components/about/AboutHeading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/about/AboutHeading.js -------------------------------------------------------------------------------- /components/about/AboutSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/about/AboutSection.js -------------------------------------------------------------------------------- /components/about/BgImageSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/about/BgImageSection.js -------------------------------------------------------------------------------- /components/about/ParagraphSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/about/ParagraphSection.js -------------------------------------------------------------------------------- /components/index/BgImageSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/index/BgImageSection.js -------------------------------------------------------------------------------- /components/index/FullScreenImageSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/index/FullScreenImageSection.js -------------------------------------------------------------------------------- /components/index/IntroSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/index/IntroSection.js -------------------------------------------------------------------------------- /components/index/PartialAboutSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/index/PartialAboutSection.js -------------------------------------------------------------------------------- /components/index/PartialContactSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/index/PartialContactSection.js -------------------------------------------------------------------------------- /components/index/ProcessSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/index/ProcessSection.js -------------------------------------------------------------------------------- /components/index/QualitySection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/index/QualitySection.js -------------------------------------------------------------------------------- /components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/components/layout.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/pages/about.js -------------------------------------------------------------------------------- /pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/pages/api/hello.js -------------------------------------------------------------------------------- /pages/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/pages/contact.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/pages/projects.js -------------------------------------------------------------------------------- /pages/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/pages/services.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/screenshots/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/screenshots/screenshot_1.png -------------------------------------------------------------------------------- /public/screenshots/screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/screenshots/screenshot_2.png -------------------------------------------------------------------------------- /public/screenshots/screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/screenshots/screenshot_3.png -------------------------------------------------------------------------------- /public/screenshots/screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/screenshots/screenshot_4.png -------------------------------------------------------------------------------- /public/screenshots/screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/screenshots/screenshot_5.png -------------------------------------------------------------------------------- /public/screenshots/screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/screenshots/screenshot_6.png -------------------------------------------------------------------------------- /public/screenshots/screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/screenshots/screenshot_7.png -------------------------------------------------------------------------------- /public/stock/orange-couch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/stock/orange-couch.jpg -------------------------------------------------------------------------------- /public/stock/patio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/stock/patio.jpg -------------------------------------------------------------------------------- /public/stock/stairs-people.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/stock/stairs-people.jpg -------------------------------------------------------------------------------- /public/stock/team.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/stock/team.jpg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-basham/construction-website/HEAD/styles/globals.css --------------------------------------------------------------------------------