├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CSS ├── about.css ├── case.css ├── contact.css ├── footer.css ├── manu.css ├── news.css ├── services.css └── variables.css ├── LICENSE ├── README.MD ├── config.json ├── index.html ├── pages ├── about.html ├── casestudies.html ├── config.json ├── contact.html ├── header.html ├── manu.html ├── news.html ├── research.html └── services.html ├── pic ├── AboutUs │ ├── mission.png │ ├── values.png │ └── vision.png ├── Artistic Boundary Railings 2.jpg ├── Artistic Boundary Railings.jpg ├── Boundary Fencing.jpg ├── Cement Elevator Wing Pulley.jpg ├── Designer Railings.jpg ├── Factory_Shed.jpg ├── FaviconDark.svg ├── FaviconLight.svg ├── Fine & Special SS Work.jpg ├── HDG Brackets.jpg ├── HSS Railings.jpg ├── Heavy Boundary Railings 2.jpg ├── Heavy Boundary Railings.jpg ├── Heavy Structure Work.jpg ├── Heavy Structure Work2.jpg ├── Heavy Structure Work3.jpg ├── Hydraulic Press Base.jpg ├── HydraulicPressBaseResized3.jpg ├── LogoDark1.svg ├── LogoDark2.svg ├── LogoLight1.svg ├── LogoLight2.svg ├── Pergola.jpg ├── RCC 2 Mtr x 3 Mtr Panel Mould Machine.jpg ├── RCC Pre Cast Panel Mould.jpg ├── Revolving Sign Board.jpg ├── Rolling Gate & shed.jpg ├── SE2 with name-01.png ├── SE2-01.png ├── SELogoResized.png ├── SS Fine Work.jpg ├── Utility Robots Fabricated Structure 2.jpg ├── Utility Robots Fabricated Structure.jpg ├── about_us.png ├── facebook.svg ├── instagram.svg ├── linkedin.svg ├── services Png │ ├── f1.png │ ├── f2.png │ ├── f3.png │ ├── f4.png │ └── f5.png ├── x.svg └── youtube.svg ├── public ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico └── site.webmanifest ├── script.js └── style.css /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CSS/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/CSS/about.css -------------------------------------------------------------------------------- /CSS/case.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/CSS/case.css -------------------------------------------------------------------------------- /CSS/contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/CSS/contact.css -------------------------------------------------------------------------------- /CSS/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/CSS/footer.css -------------------------------------------------------------------------------- /CSS/manu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/CSS/manu.css -------------------------------------------------------------------------------- /CSS/news.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/CSS/news.css -------------------------------------------------------------------------------- /CSS/services.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/CSS/services.css -------------------------------------------------------------------------------- /CSS/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/CSS/variables.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/README.MD -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/config.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/index.html -------------------------------------------------------------------------------- /pages/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pages/about.html -------------------------------------------------------------------------------- /pages/casestudies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pages/casestudies.html -------------------------------------------------------------------------------- /pages/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pages/config.json -------------------------------------------------------------------------------- /pages/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pages/contact.html -------------------------------------------------------------------------------- /pages/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pages/header.html -------------------------------------------------------------------------------- /pages/manu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pages/manu.html -------------------------------------------------------------------------------- /pages/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pages/news.html -------------------------------------------------------------------------------- /pages/research.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pages/research.html -------------------------------------------------------------------------------- /pages/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pages/services.html -------------------------------------------------------------------------------- /pic/AboutUs/mission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/AboutUs/mission.png -------------------------------------------------------------------------------- /pic/AboutUs/values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/AboutUs/values.png -------------------------------------------------------------------------------- /pic/AboutUs/vision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/AboutUs/vision.png -------------------------------------------------------------------------------- /pic/Artistic Boundary Railings 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Artistic Boundary Railings 2.jpg -------------------------------------------------------------------------------- /pic/Artistic Boundary Railings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Artistic Boundary Railings.jpg -------------------------------------------------------------------------------- /pic/Boundary Fencing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Boundary Fencing.jpg -------------------------------------------------------------------------------- /pic/Cement Elevator Wing Pulley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Cement Elevator Wing Pulley.jpg -------------------------------------------------------------------------------- /pic/Designer Railings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Designer Railings.jpg -------------------------------------------------------------------------------- /pic/Factory_Shed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Factory_Shed.jpg -------------------------------------------------------------------------------- /pic/FaviconDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/FaviconDark.svg -------------------------------------------------------------------------------- /pic/FaviconLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/FaviconLight.svg -------------------------------------------------------------------------------- /pic/Fine & Special SS Work.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Fine & Special SS Work.jpg -------------------------------------------------------------------------------- /pic/HDG Brackets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/HDG Brackets.jpg -------------------------------------------------------------------------------- /pic/HSS Railings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/HSS Railings.jpg -------------------------------------------------------------------------------- /pic/Heavy Boundary Railings 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Heavy Boundary Railings 2.jpg -------------------------------------------------------------------------------- /pic/Heavy Boundary Railings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Heavy Boundary Railings.jpg -------------------------------------------------------------------------------- /pic/Heavy Structure Work.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Heavy Structure Work.jpg -------------------------------------------------------------------------------- /pic/Heavy Structure Work2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Heavy Structure Work2.jpg -------------------------------------------------------------------------------- /pic/Heavy Structure Work3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Heavy Structure Work3.jpg -------------------------------------------------------------------------------- /pic/Hydraulic Press Base.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Hydraulic Press Base.jpg -------------------------------------------------------------------------------- /pic/HydraulicPressBaseResized3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/HydraulicPressBaseResized3.jpg -------------------------------------------------------------------------------- /pic/LogoDark1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/LogoDark1.svg -------------------------------------------------------------------------------- /pic/LogoDark2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/LogoDark2.svg -------------------------------------------------------------------------------- /pic/LogoLight1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/LogoLight1.svg -------------------------------------------------------------------------------- /pic/LogoLight2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/LogoLight2.svg -------------------------------------------------------------------------------- /pic/Pergola.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Pergola.jpg -------------------------------------------------------------------------------- /pic/RCC 2 Mtr x 3 Mtr Panel Mould Machine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/RCC 2 Mtr x 3 Mtr Panel Mould Machine.jpg -------------------------------------------------------------------------------- /pic/RCC Pre Cast Panel Mould.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/RCC Pre Cast Panel Mould.jpg -------------------------------------------------------------------------------- /pic/Revolving Sign Board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Revolving Sign Board.jpg -------------------------------------------------------------------------------- /pic/Rolling Gate & shed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Rolling Gate & shed.jpg -------------------------------------------------------------------------------- /pic/SE2 with name-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/SE2 with name-01.png -------------------------------------------------------------------------------- /pic/SE2-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/SE2-01.png -------------------------------------------------------------------------------- /pic/SELogoResized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/SELogoResized.png -------------------------------------------------------------------------------- /pic/SS Fine Work.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/SS Fine Work.jpg -------------------------------------------------------------------------------- /pic/Utility Robots Fabricated Structure 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Utility Robots Fabricated Structure 2.jpg -------------------------------------------------------------------------------- /pic/Utility Robots Fabricated Structure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/Utility Robots Fabricated Structure.jpg -------------------------------------------------------------------------------- /pic/about_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/about_us.png -------------------------------------------------------------------------------- /pic/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/facebook.svg -------------------------------------------------------------------------------- /pic/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/instagram.svg -------------------------------------------------------------------------------- /pic/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/linkedin.svg -------------------------------------------------------------------------------- /pic/services Png/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/services Png/f1.png -------------------------------------------------------------------------------- /pic/services Png/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/services Png/f2.png -------------------------------------------------------------------------------- /pic/services Png/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/services Png/f3.png -------------------------------------------------------------------------------- /pic/services Png/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/services Png/f4.png -------------------------------------------------------------------------------- /pic/services Png/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/services Png/f5.png -------------------------------------------------------------------------------- /pic/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/x.svg -------------------------------------------------------------------------------- /pic/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/pic/youtube.svg -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/script.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artemiskgg1/NexaSite/HEAD/style.css --------------------------------------------------------------------------------