From 9b01d4e8637e435583fb92aaffe4400db790816a Mon Sep 17 00:00:00 2001 From: Anshuman7080 <164294129+Anshuman7080@users.noreply.github.com> Date: Sun, 6 Oct 2024 02:38:58 +0000 Subject: [PATCH] improve performance --- PROJECT_5/style.css | 37 +++++----- build/asset-manifest.json | 27 +++++++ build/favicon.ico | Bin 0 -> 1150 bytes build/index.html | 1 + build/manifest.json | 25 +++++++ build/ms-icon-144x144.png | Bin 0 -> 10089 bytes build/robots.txt | 3 + build/static/css/main.43c05346.css | 2 + build/static/css/main.43c05346.css.map | 1 + build/static/js/787.71e672d5.chunk.js | 2 + build/static/js/787.71e672d5.chunk.js.map | 1 + build/static/js/main.1304cb9f.js | 3 + build/static/js/main.1304cb9f.js.LICENSE.txt | 67 ++++++++++++++++++ build/static/js/main.1304cb9f.js.map | 1 + .../media/about.c7dbffac2d92d2ab39c2.jpg | Bin 0 -> 1470542 bytes .../static/media/c1.8fd2ce4f3fe98cf73271.jpg | Bin 0 -> 8046038 bytes .../static/media/c2.d49e4e814f9b5805aafb.jpg | Bin 0 -> 1864014 bytes .../static/media/c3.5f3c5013470faa340010.jpg | Bin 0 -> 1114068 bytes .../media/home.d1447b8e2063932ff0d8.jpg | Bin 0 -> 1130451 bytes .../static/media/i1.f25c61f17ac23a30341b.jpg | Bin 0 -> 806689 bytes .../static/media/i2.4a3bc6200942e55fe31e.jpg | Bin 0 -> 1242441 bytes .../static/media/i3.def5df5583ce2a21eeb9.jpg | Bin 0 -> 461818 bytes .../static/media/i4.d98d61daafbc6f50ddae.jpg | Bin 0 -> 4412547 bytes .../static/media/i5.7fb02b59a7bc4d2845e7.jpg | Bin 0 -> 978278 bytes .../static/media/i6.f0aaf519c1f6ae65dc4d.jpg | Bin 0 -> 367705 bytes .../media/serviceImg.9978f78b36448369d850.jpg | Bin 0 -> 105809 bytes 26 files changed, 150 insertions(+), 20 deletions(-) create mode 100644 build/asset-manifest.json create mode 100644 build/favicon.ico create mode 100644 build/index.html create mode 100644 build/manifest.json create mode 100644 build/ms-icon-144x144.png create mode 100644 build/robots.txt create mode 100644 build/static/css/main.43c05346.css create mode 100644 build/static/css/main.43c05346.css.map create mode 100644 build/static/js/787.71e672d5.chunk.js create mode 100644 build/static/js/787.71e672d5.chunk.js.map create mode 100644 build/static/js/main.1304cb9f.js create mode 100644 build/static/js/main.1304cb9f.js.LICENSE.txt create mode 100644 build/static/js/main.1304cb9f.js.map create mode 100644 build/static/media/about.c7dbffac2d92d2ab39c2.jpg create mode 100644 build/static/media/c1.8fd2ce4f3fe98cf73271.jpg create mode 100644 build/static/media/c2.d49e4e814f9b5805aafb.jpg create mode 100644 build/static/media/c3.5f3c5013470faa340010.jpg create mode 100644 build/static/media/home.d1447b8e2063932ff0d8.jpg create mode 100644 build/static/media/i1.f25c61f17ac23a30341b.jpg create mode 100644 build/static/media/i2.4a3bc6200942e55fe31e.jpg create mode 100644 build/static/media/i3.def5df5583ce2a21eeb9.jpg create mode 100644 build/static/media/i4.d98d61daafbc6f50ddae.jpg create mode 100644 build/static/media/i5.7fb02b59a7bc4d2845e7.jpg create mode 100644 build/static/media/i6.f0aaf519c1f6ae65dc4d.jpg create mode 100644 build/static/media/serviceImg.9978f78b36448369d850.jpg diff --git a/PROJECT_5/style.css b/PROJECT_5/style.css index 2c79611..71ac06d 100644 --- a/PROJECT_5/style.css +++ b/PROJECT_5/style.css @@ -1,82 +1,79 @@ @import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap"); +/* Reset styles */ * { margin: 0; padding: 0; box-sizing: border-box; - font-family: "poppins"; + font-family: 'Poppins', sans-serif; /* Specify sans-serif as fallback */ } body { background: linear-gradient(45deg, #2980b9, #100b12); height: 100vh; + display: flex; + justify-content: center; /* Center container horizontally */ + align-items: center; /* Center container vertically */ } .container { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); width: 400px; height: 450px; background: #fff; border-radius: 10px; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Added subtle shadow for depth */ } .container h1 { text-align: center; - padding: 20px 0px; + padding: 20px 0; border-bottom: 1px solid #ccc; } .container form { padding: 0 40px; - box-sizing: border-box; } -.container .txt-field { +.txt-field { position: relative; - margin: 30px 0px; + margin: 30px 0; } .txt-field input { width: 100%; - padding: 0px 5px; + padding: 0 5px; height: 40px; font-size: 16px; + border: 1px solid #ccc; /* Added border for better input visibility */ + border-radius: 5px; /* Added border radius for inputs */ } .pass_forget { - margin: -5px 0px 20px 5px; + margin: -5px 0 20px 5px; } .pass_forget a { - margin: -5px 0px 20px 5px; color: #a6a6a6; - cursor: pointer; text-decoration: none; } -.pass_forget:hover { +.pass_forget a:hover { text-decoration: underline; } input[type="submit"] { width: 100%; height: 50px; - border: 1px solid; background: #2691d9; + border: none; /* Removed default border */ border-radius: 25px; font-size: 18px; color: #e9f4fb; font-weight: 700; - outline: none; cursor: pointer; - transition: 0.3s; + transition: transform 0.3s; /* Transition for scaling */ } -input[type="submit"]:active -{ +input[type="submit"]:active { transform: scale(0.95); } - diff --git a/build/asset-manifest.json b/build/asset-manifest.json new file mode 100644 index 0000000..97e2bc7 --- /dev/null +++ b/build/asset-manifest.json @@ -0,0 +1,27 @@ +{ + "files": { + "main.css": "/static/css/main.43c05346.css", + "main.js": "/static/js/main.1304cb9f.js", + "static/js/787.71e672d5.chunk.js": "/static/js/787.71e672d5.chunk.js", + "static/media/c1.jpg": "/static/media/c1.8fd2ce4f3fe98cf73271.jpg", + "static/media/i4.jpg": "/static/media/i4.d98d61daafbc6f50ddae.jpg", + "static/media/c2.jpg": "/static/media/c2.d49e4e814f9b5805aafb.jpg", + "static/media/about.jpg": "/static/media/about.c7dbffac2d92d2ab39c2.jpg", + "static/media/i2.jpg": "/static/media/i2.4a3bc6200942e55fe31e.jpg", + "static/media/home.jpg": "/static/media/home.d1447b8e2063932ff0d8.jpg", + "static/media/c3.jpg": "/static/media/c3.5f3c5013470faa340010.jpg", + "static/media/i5.jpg": "/static/media/i5.7fb02b59a7bc4d2845e7.jpg", + "static/media/i1.jpg": "/static/media/i1.f25c61f17ac23a30341b.jpg", + "static/media/i3.jpg": "/static/media/i3.def5df5583ce2a21eeb9.jpg", + "static/media/i6.jpg": "/static/media/i6.f0aaf519c1f6ae65dc4d.jpg", + "static/media/serviceImg.jpg": "/static/media/serviceImg.9978f78b36448369d850.jpg", + "index.html": "/index.html", + "main.43c05346.css.map": "/static/css/main.43c05346.css.map", + "main.1304cb9f.js.map": "/static/js/main.1304cb9f.js.map", + "787.71e672d5.chunk.js.map": "/static/js/787.71e672d5.chunk.js.map" + }, + "entrypoints": [ + "static/css/main.43c05346.css", + "static/js/main.1304cb9f.js" + ] +} \ No newline at end of file diff --git a/build/favicon.ico b/build/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..198d4b6508cf7135316c67bdf3bb6a29c9bfe460 GIT binary patch literal 1150 zcmchWF%E+;3`IYJtqbbF+>xX87(EKtVC$_I(;w)UEGw20MIy+t{rw-w5@6sr&*1*T zdjb{!D}xf1OJ@Q&dp@o>dv5!7oWU}+gt(krIP2|U?SE9K|5ESsUGscSbarWGy}DzR zt+!N1ob(c7wa6FgmR0S&zLzh`-tYT}v$_~%JFBV1Dc3OGQ^WSWfu1)g_B#Tffj4hl HnaS)AM*FTr literal 0 HcmV?d00001 diff --git a/build/index.html b/build/index.html new file mode 100644 index 0000000..ce238f2 --- /dev/null +++ b/build/index.html @@ -0,0 +1 @@ +
nQ@P`^7sWFIHM67h#ToFTj2Vs6BRGHLIHGXJj{-h&;b
zCXaBw6NdhS+lYhfG*fBGFW`~Br0vP1B8zwp?i%X);;4_t(kAAcn;pTd4khLG-1uA>
zwF%#7dC}OSa^2D|f74t^&;)3646=OG)aEx7_DNvz#B0p-OQMazULRE8%$vq=H56W?
zxyp(@Y+CXOkeW6r)Q4r(0d}ZxOX3;SNdQ>Va=3@z%$H48ZA3gTG!^Y|Af*nXzsbQ3
z3mfArwBsD-2FW?(H3nlFPX&HeM<)$_P*pCiy@14w80FR;3vfI*L0l*q7Fj{=n;9)g
zenN;V1 a||125d?(a.sortIndex=c,f(t,a),null===h(r)&&a===h(t)&&(B?(E(L),L=-1):B=!0,K(H,c-d))):(a.sortIndex=e,f(r,a),A||z||(A=!0,I(J)));return a};\nexports.unstable_shouldYield=M;exports.unstable_wrapCallback=function(a){var b=y;return function(){var c=y;y=b;try{return a.apply(this,arguments)}finally{y=c}}};\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/scheduler.production.min.js');\n} else {\n module.exports = require('./cjs/scheduler.development.js');\n}\n","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\n/**\n * Similar to invariant but only logs a warning if the condition is not met.\n * This can be used to log issues in development environments in critical\n * paths. Removing the logging code for production environments will keep the\n * same logic and follow the same code paths.\n */\n\nvar __DEV__ = process.env.NODE_ENV !== 'production';\n\nvar warning = function() {};\n\nif (__DEV__) {\n var printWarning = function printWarning(format, args) {\n var len = arguments.length;\n args = new Array(len > 1 ? len - 1 : 0);\n for (var key = 1; key < len; key++) {\n args[key - 1] = arguments[key];\n }\n var argIndex = 0;\n var message = 'Warning: ' +\n format.replace(/%s/g, function() {\n return args[argIndex++];\n });\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) {}\n }\n\n warning = function(condition, format, args) {\n var len = arguments.length;\n args = new Array(len > 2 ? len - 2 : 0);\n for (var key = 2; key < len; key++) {\n args[key - 2] = arguments[key];\n }\n if (format === undefined) {\n throw new Error(\n '`warning(condition, format, ...args)` requires a warning ' +\n 'message argument'\n );\n }\n if (!condition) {\n printWarning.apply(null, [format].concat(args));\n }\n };\n}\n\nmodule.exports = warning;\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = function(chunkId) {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce(function(promises, key) {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = function(chunkId) {\n\t// return url for filenames based on template\n\treturn \"static/js/\" + chunkId + \".\" + \"71e672d5\" + \".chunk.js\";\n};","// This function allow to reference async chunks\n__webpack_require__.miniCssF = function(chunkId) {\n\t// return url for filenames based on template\n\treturn undefined;\n};","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","var inProgress = {};\nvar dataWebpackPrefix = \"website:\";\n// loadScript function to load a script via script tag\n__webpack_require__.l = function(url, done, key, chunkId) {\n\tif(inProgress[url]) { inProgress[url].push(done); return; }\n\tvar script, needAttach;\n\tif(key !== undefined) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tfor(var i = 0; i < scripts.length; i++) {\n\t\t\tvar s = scripts[i];\n\t\t\tif(s.getAttribute(\"src\") == url || s.getAttribute(\"data-webpack\") == dataWebpackPrefix + key) { script = s; break; }\n\t\t}\n\t}\n\tif(!script) {\n\t\tneedAttach = true;\n\t\tscript = document.createElement('script');\n\n\t\tscript.charset = 'utf-8';\n\t\tscript.timeout = 120;\n\t\tif (__webpack_require__.nc) {\n\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n\t\t}\n\t\tscript.setAttribute(\"data-webpack\", dataWebpackPrefix + key);\n\t\tscript.src = url;\n\t}\n\tinProgress[url] = [done];\n\tvar onScriptComplete = function(prev, event) {\n\t\t// avoid mem leaks in IE.\n\t\tscript.onerror = script.onload = null;\n\t\tclearTimeout(timeout);\n\t\tvar doneFns = inProgress[url];\n\t\tdelete inProgress[url];\n\t\tscript.parentNode && script.parentNode.removeChild(script);\n\t\tdoneFns && doneFns.forEach(function(fn) { return fn(event); });\n\t\tif(prev) return prev(event);\n\t}\n\t;\n\tvar timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);\n\tscript.onerror = onScriptComplete.bind(null, script.onerror);\n\tscript.onload = onScriptComplete.bind(null, script.onload);\n\tneedAttach && document.head.appendChild(script);\n};","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.p = \"/\";","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t179: 0\n};\n\n__webpack_require__.f.j = function(chunkId, promises) {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise(function(resolve, reject) { installedChunkData = installedChunks[chunkId] = [resolve, reject]; });\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = function(event) {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t} else installedChunks[chunkId] = 0;\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n// no on chunks loaded\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = function(parentChunkLoadingFunction, data) {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunkwebsite\"] = self[\"webpackChunkwebsite\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","export default function _arrayLikeToArray(arr, len) {\n if (len == null || len > arr.length) len = arr.length;\n for (var i = 0, arr2 = new Array(len); i < len; i++) {\n arr2[i] = arr[i];\n }\n return arr2;\n}","import arrayWithHoles from \"./arrayWithHoles.js\";\nimport iterableToArrayLimit from \"./iterableToArrayLimit.js\";\nimport unsupportedIterableToArray from \"./unsupportedIterableToArray.js\";\nimport nonIterableRest from \"./nonIterableRest.js\";\nexport default function _slicedToArray(arr, i) {\n return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest();\n}","export default function _arrayWithHoles(arr) {\n if (Array.isArray(arr)) return arr;\n}","export default function _iterableToArrayLimit(arr, i) {\n var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"];\n if (_i == null) return;\n var _arr = [];\n var _n = true;\n var _d = false;\n var _s, _e;\n try {\n for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {\n _arr.push(_s.value);\n if (i && _arr.length === i) break;\n }\n } catch (err) {\n _d = true;\n _e = err;\n } finally {\n try {\n if (!_n && _i[\"return\"] != null) _i[\"return\"]();\n } finally {\n if (_d) throw _e;\n }\n }\n return _arr;\n}","import arrayLikeToArray from \"./arrayLikeToArray.js\";\nexport default function _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return arrayLikeToArray(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen);\n}","export default function _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}","export default function _extends() {\n _extends = Object.assign ? Object.assign.bind() : function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n return target;\n };\n return _extends.apply(this, arguments);\n}","import * as React from \"react\";\nimport type { History, Location } from \"history\";\nimport { Action as NavigationType } from \"history\";\n\nimport type { RouteMatch } from \"./router\";\n\n/**\n * A Navigator is a \"location changer\"; it's how you get to different locations.\n *\n * Every history instance conforms to the Navigator interface, but the\n * distinction is useful primarily when it comes to the low-level \n Some quick example text to build on the card title and\n make up the bulk of the card's content.\n FOLLOW US ABOUT US CONTACT US 2+F+?zq3uHv{hG=-Mu~QX|4>N
z`|>!?TNSPw>O#A|PC_>cWBoM>tsy$iHA?M?oolUJBePmLCoVp-9v9MKj2Ej=b|@Na
z3O5|j8RtqH@M>zpS9T>9eAOjvlY6S;o@Q;WK5;4dM$JI1rqJcLzMQXL?&&!t!jW3@
z>YWldUjQG~lXcm0zRZTmu>KI$Yzgjl{x{0vx0SuRobA54Qm5`%LTeYwy85YL`Lq4S
z*pqsM54_Q(BT4(+(+^?$t@~~JmQ=RgE*eoeO4!?#6W@\n {props.name}\n
\n
\n We are the team of talented developers making website.\n
\n\n \n
\n
\n
\n
contact us
\n\tWe'd love to hear from you!
\n\t\n
{props.name}
\n Our Services
\n { renderUserMessage() }}/>\n
E^S9r)H026TeE-h7=x4b{9{G
z%5$c9s#V&$I$1c+S2pkjLuH%Q`1+c$b6ZVT+Y9SYLf(g7L4)_X*?9Fd*kxomI<{o>
zrt=+sl>Dt7bzG0O#UPJub7xh0Mu*RXX2~M^v-!A7C%tXAQtGgE)J#HaV@G5R6Iv46
zwI3xQQGr-NP-?qf%LWy!UNo1F-#qCcD^;7b?_BmXf-|-W;}U14eV=!024;m^gKxF8
ziq!k_%Z3kYzZ2U0=KRfDbOq&n*Hh_e_MO?atKjh@q#kc2T2o?)_6|U$^egt@1VZ#Z
z`&aeIJ~K8o6JoeMB>S$X8WL=<9&JyJ5*=~U9vDeNPCQFgXsb%kr--4yGrVG*Y+#b-
zR%X<;+#}i#Hg2>P9hPd%X_3)t+se!E_2}tKm*4HS