├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── 404 ├── 404.css └── 404.js ├── Allterms ├── cookies.css ├── cookies.js ├── privacy.css ├── privacy.js ├── terms.css └── terms.js ├── App.css ├── App.js ├── App.test.js ├── about ├── about.css └── about.js ├── blog ├── blog.css └── blog.js ├── blogDetails ├── blogDetails.css └── blogDetails.js ├── contact ├── contact.css └── contact.js ├── faq ├── faq.css └── faq.js ├── headerFooter ├── footer.css ├── footer.js ├── header.css ├── header.js ├── header2.css └── header2.js ├── home ├── home.css ├── home.js ├── homeResponsive.css └── peopleThoughts.json ├── images ├── Icon1.svg ├── Icon2.svg ├── Icon3.svg ├── Icon4.svg ├── articles │ ├── article1.jpg │ ├── article2.jpg │ ├── article3.jpg │ ├── article4.jpg │ ├── article5.jpg │ ├── article6.jpg │ └── blogLatest.jpg ├── backgroung │ ├── 404Bg.jpg │ ├── PricingPlanBg.jpg │ ├── aboutBg.png │ ├── blogBg.jpg │ ├── blogDetailsBg.jpg │ ├── contact-bg.jpg │ ├── faqBg.jpg │ ├── homeBg.jpg │ ├── projectBg.jpg │ ├── projectDetailsBg.jpg │ ├── restrictedBg.jpg │ ├── serviceSingleBg.jpg │ ├── servicesBg.jpg │ ├── teamBg.jpg │ └── teamSingleBg.jpg ├── blogContent1.png ├── blogContent2.png ├── brand1.svg ├── brand2.svg ├── brand3.svg ├── brand4.svg ├── brand5.svg ├── everyQuestion.jpg ├── home │ ├── customer.jpg │ ├── hArticle1.jpg │ ├── hArticle2.jpg │ ├── hArticle3.jpg │ ├── hProject1.jpg │ ├── hProject2.jpg │ ├── hProject3.jpg │ ├── hProject4.jpg │ └── home1.jpg ├── logo.png ├── project │ ├── project1.jpg │ ├── project2.jpg │ ├── project3.jpg │ ├── project4.jpg │ ├── project5.jpg │ ├── project6.jpg │ ├── project7.jpg │ └── project8.jpg ├── projectQuestion.jpg ├── result.jpg ├── serviceSingle.jpg ├── services1.jpg ├── services2.jpg ├── services3.jpg ├── services4.jpg ├── team │ ├── member1.png │ ├── member2.jpg │ ├── member3.png │ ├── member4.png │ ├── member5.png │ ├── member6.png │ ├── member7.png │ └── member8.png ├── whatwedo.jpg └── zoomImg.png ├── index.css ├── index.js ├── logo.svg ├── pricingPlan ├── pricingPlan.css └── pricingPlan.js ├── project ├── project.css ├── project.js ├── projectCard.css ├── projectCard.js └── projects.json ├── projectDetails ├── projectDetails.css └── projectDetails.js ├── reportWebVitals.js ├── restrictedPage ├── restricted.css └── restricted.js ├── serviceSingle ├── serviceSingle.css └── serviceSingle.js ├── servicesPage ├── services.css ├── services.js └── services.json ├── setupTests.js ├── smooth.js ├── team ├── team.css ├── team.js └── team_members.json └── teamSingle ├── otherSingleCard.css ├── otherSingleCard.js ├── otherSingleCardName.css ├── otherSingleCardName.js ├── teamSingle.css └── teamSingle.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/404/404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/404/404.css -------------------------------------------------------------------------------- /src/404/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/404/404.js -------------------------------------------------------------------------------- /src/Allterms/cookies.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/Allterms/cookies.css -------------------------------------------------------------------------------- /src/Allterms/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/Allterms/cookies.js -------------------------------------------------------------------------------- /src/Allterms/privacy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/Allterms/privacy.css -------------------------------------------------------------------------------- /src/Allterms/privacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/Allterms/privacy.js -------------------------------------------------------------------------------- /src/Allterms/terms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/Allterms/terms.css -------------------------------------------------------------------------------- /src/Allterms/terms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/Allterms/terms.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/about/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/about/about.css -------------------------------------------------------------------------------- /src/about/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/about/about.js -------------------------------------------------------------------------------- /src/blog/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/blog/blog.css -------------------------------------------------------------------------------- /src/blog/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/blog/blog.js -------------------------------------------------------------------------------- /src/blogDetails/blogDetails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/blogDetails/blogDetails.css -------------------------------------------------------------------------------- /src/blogDetails/blogDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/blogDetails/blogDetails.js -------------------------------------------------------------------------------- /src/contact/contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/contact/contact.css -------------------------------------------------------------------------------- /src/contact/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/contact/contact.js -------------------------------------------------------------------------------- /src/faq/faq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/faq/faq.css -------------------------------------------------------------------------------- /src/faq/faq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/faq/faq.js -------------------------------------------------------------------------------- /src/headerFooter/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/headerFooter/footer.css -------------------------------------------------------------------------------- /src/headerFooter/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/headerFooter/footer.js -------------------------------------------------------------------------------- /src/headerFooter/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/headerFooter/header.css -------------------------------------------------------------------------------- /src/headerFooter/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/headerFooter/header.js -------------------------------------------------------------------------------- /src/headerFooter/header2.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/headerFooter/header2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/headerFooter/header2.js -------------------------------------------------------------------------------- /src/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/home/home.css -------------------------------------------------------------------------------- /src/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/home/home.js -------------------------------------------------------------------------------- /src/home/homeResponsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/home/homeResponsive.css -------------------------------------------------------------------------------- /src/home/peopleThoughts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/home/peopleThoughts.json -------------------------------------------------------------------------------- /src/images/Icon1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/Icon1.svg -------------------------------------------------------------------------------- /src/images/Icon2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/Icon2.svg -------------------------------------------------------------------------------- /src/images/Icon3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/Icon3.svg -------------------------------------------------------------------------------- /src/images/Icon4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/Icon4.svg -------------------------------------------------------------------------------- /src/images/articles/article1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/articles/article1.jpg -------------------------------------------------------------------------------- /src/images/articles/article2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/articles/article2.jpg -------------------------------------------------------------------------------- /src/images/articles/article3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/articles/article3.jpg -------------------------------------------------------------------------------- /src/images/articles/article4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/articles/article4.jpg -------------------------------------------------------------------------------- /src/images/articles/article5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/articles/article5.jpg -------------------------------------------------------------------------------- /src/images/articles/article6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/articles/article6.jpg -------------------------------------------------------------------------------- /src/images/articles/blogLatest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/articles/blogLatest.jpg -------------------------------------------------------------------------------- /src/images/backgroung/404Bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/404Bg.jpg -------------------------------------------------------------------------------- /src/images/backgroung/PricingPlanBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/PricingPlanBg.jpg -------------------------------------------------------------------------------- /src/images/backgroung/aboutBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/aboutBg.png -------------------------------------------------------------------------------- /src/images/backgroung/blogBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/blogBg.jpg -------------------------------------------------------------------------------- /src/images/backgroung/blogDetailsBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/blogDetailsBg.jpg -------------------------------------------------------------------------------- /src/images/backgroung/contact-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/contact-bg.jpg -------------------------------------------------------------------------------- /src/images/backgroung/faqBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/faqBg.jpg -------------------------------------------------------------------------------- /src/images/backgroung/homeBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/homeBg.jpg -------------------------------------------------------------------------------- /src/images/backgroung/projectBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/projectBg.jpg -------------------------------------------------------------------------------- /src/images/backgroung/projectDetailsBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/projectDetailsBg.jpg -------------------------------------------------------------------------------- /src/images/backgroung/restrictedBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/restrictedBg.jpg -------------------------------------------------------------------------------- /src/images/backgroung/serviceSingleBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/serviceSingleBg.jpg -------------------------------------------------------------------------------- /src/images/backgroung/servicesBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/servicesBg.jpg -------------------------------------------------------------------------------- /src/images/backgroung/teamBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/teamBg.jpg -------------------------------------------------------------------------------- /src/images/backgroung/teamSingleBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/backgroung/teamSingleBg.jpg -------------------------------------------------------------------------------- /src/images/blogContent1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/blogContent1.png -------------------------------------------------------------------------------- /src/images/blogContent2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/blogContent2.png -------------------------------------------------------------------------------- /src/images/brand1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/brand1.svg -------------------------------------------------------------------------------- /src/images/brand2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/brand2.svg -------------------------------------------------------------------------------- /src/images/brand3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/brand3.svg -------------------------------------------------------------------------------- /src/images/brand4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/brand4.svg -------------------------------------------------------------------------------- /src/images/brand5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/brand5.svg -------------------------------------------------------------------------------- /src/images/everyQuestion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/everyQuestion.jpg -------------------------------------------------------------------------------- /src/images/home/customer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/home/customer.jpg -------------------------------------------------------------------------------- /src/images/home/hArticle1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/home/hArticle1.jpg -------------------------------------------------------------------------------- /src/images/home/hArticle2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/home/hArticle2.jpg -------------------------------------------------------------------------------- /src/images/home/hArticle3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/home/hArticle3.jpg -------------------------------------------------------------------------------- /src/images/home/hProject1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/home/hProject1.jpg -------------------------------------------------------------------------------- /src/images/home/hProject2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/home/hProject2.jpg -------------------------------------------------------------------------------- /src/images/home/hProject3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/home/hProject3.jpg -------------------------------------------------------------------------------- /src/images/home/hProject4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/home/hProject4.jpg -------------------------------------------------------------------------------- /src/images/home/home1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/home/home1.jpg -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/images/project/project1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/project/project1.jpg -------------------------------------------------------------------------------- /src/images/project/project2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/project/project2.jpg -------------------------------------------------------------------------------- /src/images/project/project3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/project/project3.jpg -------------------------------------------------------------------------------- /src/images/project/project4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/project/project4.jpg -------------------------------------------------------------------------------- /src/images/project/project5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/project/project5.jpg -------------------------------------------------------------------------------- /src/images/project/project6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/project/project6.jpg -------------------------------------------------------------------------------- /src/images/project/project7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/project/project7.jpg -------------------------------------------------------------------------------- /src/images/project/project8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/project/project8.jpg -------------------------------------------------------------------------------- /src/images/projectQuestion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/projectQuestion.jpg -------------------------------------------------------------------------------- /src/images/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/result.jpg -------------------------------------------------------------------------------- /src/images/serviceSingle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/serviceSingle.jpg -------------------------------------------------------------------------------- /src/images/services1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/services1.jpg -------------------------------------------------------------------------------- /src/images/services2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/services2.jpg -------------------------------------------------------------------------------- /src/images/services3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/services3.jpg -------------------------------------------------------------------------------- /src/images/services4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/services4.jpg -------------------------------------------------------------------------------- /src/images/team/member1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/team/member1.png -------------------------------------------------------------------------------- /src/images/team/member2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/team/member2.jpg -------------------------------------------------------------------------------- /src/images/team/member3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/team/member3.png -------------------------------------------------------------------------------- /src/images/team/member4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/team/member4.png -------------------------------------------------------------------------------- /src/images/team/member5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/team/member5.png -------------------------------------------------------------------------------- /src/images/team/member6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/team/member6.png -------------------------------------------------------------------------------- /src/images/team/member7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/team/member7.png -------------------------------------------------------------------------------- /src/images/team/member8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/team/member8.png -------------------------------------------------------------------------------- /src/images/whatwedo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/whatwedo.jpg -------------------------------------------------------------------------------- /src/images/zoomImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/images/zoomImg.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pricingPlan/pricingPlan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/pricingPlan/pricingPlan.css -------------------------------------------------------------------------------- /src/pricingPlan/pricingPlan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/pricingPlan/pricingPlan.js -------------------------------------------------------------------------------- /src/project/project.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/project/project.css -------------------------------------------------------------------------------- /src/project/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/project/project.js -------------------------------------------------------------------------------- /src/project/projectCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/project/projectCard.css -------------------------------------------------------------------------------- /src/project/projectCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/project/projectCard.js -------------------------------------------------------------------------------- /src/project/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/project/projects.json -------------------------------------------------------------------------------- /src/projectDetails/projectDetails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/projectDetails/projectDetails.css -------------------------------------------------------------------------------- /src/projectDetails/projectDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/projectDetails/projectDetails.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/restrictedPage/restricted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/restrictedPage/restricted.css -------------------------------------------------------------------------------- /src/restrictedPage/restricted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/restrictedPage/restricted.js -------------------------------------------------------------------------------- /src/serviceSingle/serviceSingle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/serviceSingle/serviceSingle.css -------------------------------------------------------------------------------- /src/serviceSingle/serviceSingle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/serviceSingle/serviceSingle.js -------------------------------------------------------------------------------- /src/servicesPage/services.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/servicesPage/services.css -------------------------------------------------------------------------------- /src/servicesPage/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/servicesPage/services.js -------------------------------------------------------------------------------- /src/servicesPage/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/servicesPage/services.json -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/smooth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/smooth.js -------------------------------------------------------------------------------- /src/team/team.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/team/team.css -------------------------------------------------------------------------------- /src/team/team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/team/team.js -------------------------------------------------------------------------------- /src/team/team_members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/team/team_members.json -------------------------------------------------------------------------------- /src/teamSingle/otherSingleCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/teamSingle/otherSingleCard.css -------------------------------------------------------------------------------- /src/teamSingle/otherSingleCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/teamSingle/otherSingleCard.js -------------------------------------------------------------------------------- /src/teamSingle/otherSingleCardName.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/teamSingle/otherSingleCardName.css -------------------------------------------------------------------------------- /src/teamSingle/otherSingleCardName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/teamSingle/otherSingleCardName.js -------------------------------------------------------------------------------- /src/teamSingle/teamSingle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/teamSingle/teamSingle.css -------------------------------------------------------------------------------- /src/teamSingle/teamSingle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cafarli/Interior/HEAD/src/teamSingle/teamSingle.js --------------------------------------------------------------------------------