first commit
This commit is contained in:
commit
79c704c511
|
@ -0,0 +1,24 @@
|
||||||
|
# build output
|
||||||
|
dist/
|
||||||
|
|
||||||
|
# generated types
|
||||||
|
.astro/
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# logs
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
|
||||||
|
# environment variables
|
||||||
|
.env
|
||||||
|
.env.production
|
||||||
|
|
||||||
|
# macOS-specific files
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# jetbrains setting folder
|
||||||
|
.idea/
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"recommendations": ["astro-build.astro-vscode"],
|
||||||
|
"unwantedRecommendations": []
|
||||||
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"command": "./node_modules/.bin/astro dev",
|
||||||
|
"name": "Development server",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "node-terminal"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"workbench.colorCustomizations": {
|
||||||
|
"activityBar.activeBackground": "#65c89b",
|
||||||
|
"activityBar.background": "#65c89b",
|
||||||
|
"activityBar.foreground": "#15202b",
|
||||||
|
"activityBar.inactiveForeground": "#15202b99",
|
||||||
|
"activityBarBadge.background": "#945bc4",
|
||||||
|
"activityBarBadge.foreground": "#e7e7e7",
|
||||||
|
"commandCenter.border": "#15202b99",
|
||||||
|
"sash.hoverBorder": "#65c89b",
|
||||||
|
"statusBar.background": "#42b883",
|
||||||
|
"statusBar.foreground": "#15202b",
|
||||||
|
"statusBarItem.hoverBackground": "#359268",
|
||||||
|
"statusBarItem.remoteBackground": "#42b883",
|
||||||
|
"statusBarItem.remoteForeground": "#15202b",
|
||||||
|
"titleBar.activeBackground": "#42b883",
|
||||||
|
"titleBar.activeForeground": "#15202b",
|
||||||
|
"titleBar.inactiveBackground": "#42b88399",
|
||||||
|
"titleBar.inactiveForeground": "#15202b99"
|
||||||
|
},
|
||||||
|
"peacock.color": "#42b883"
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
# Astro Starter Kit: Basics
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm create astro@latest -- --template basics
|
||||||
|
```
|
||||||
|
|
||||||
|
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
|
||||||
|
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics)
|
||||||
|
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json)
|
||||||
|
|
||||||
|
> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
|
||||||
|
|
||||||
|
![just-the-basics](https://github.com/withastro/astro/assets/2244813/a0a5533c-a856-4198-8470-2d67b1d7c554)
|
||||||
|
|
||||||
|
## 🚀 Project Structure
|
||||||
|
|
||||||
|
Inside of your Astro project, you'll see the following folders and files:
|
||||||
|
|
||||||
|
```text
|
||||||
|
/
|
||||||
|
├── public/
|
||||||
|
│ └── favicon.svg
|
||||||
|
├── src/
|
||||||
|
│ ├── components/
|
||||||
|
│ │ └── Card.astro
|
||||||
|
│ ├── layouts/
|
||||||
|
│ │ └── Layout.astro
|
||||||
|
│ └── pages/
|
||||||
|
│ └── index.astro
|
||||||
|
└── package.json
|
||||||
|
```
|
||||||
|
|
||||||
|
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
|
||||||
|
|
||||||
|
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
|
||||||
|
|
||||||
|
Any static assets, like images, can be placed in the `public/` directory.
|
||||||
|
|
||||||
|
## 🧞 Commands
|
||||||
|
|
||||||
|
All commands are run from the root of the project, from a terminal:
|
||||||
|
|
||||||
|
| Command | Action |
|
||||||
|
| :------------------------ | :----------------------------------------------- |
|
||||||
|
| `npm install` | Installs dependencies |
|
||||||
|
| `npm run dev` | Starts local dev server at `localhost:4321` |
|
||||||
|
| `npm run build` | Build your production site to `./dist/` |
|
||||||
|
| `npm run preview` | Preview your build locally, before deploying |
|
||||||
|
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
|
||||||
|
| `npm run astro -- --help` | Get help using the Astro CLI |
|
||||||
|
|
||||||
|
## 👀 Want to learn more?
|
||||||
|
|
||||||
|
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
|
|
@ -0,0 +1,80 @@
|
||||||
|
5937c8f4c14f797a232ddb77da9f52bd4afe37bc
|
||||||
|
4d764997290d9828163b7c0862682b53ad50ff30
|
||||||
|
f26864d924f7cc9e0ba1b209c6530f28027380bb astro.config.mjs
|
||||||
|
83c609e91db4f48824886dc45d1ded89fe4e8d9a build.sh
|
||||||
|
016b59ea143dc944b0fc635052b7bdbcfce23d14 .gitignore
|
||||||
|
c7c516c669d46022bdd65788f04ee0f977670090 package.json
|
||||||
|
e588554c6c0aa57d6fa7b2494abfc6b1136acdf8 package-lock.json
|
||||||
|
1db3fb3991a8968a9505a8972b3d9a503eaa43f9 README.md
|
||||||
|
e2c575b9d6ab933a35dc4567b62fdb14a2189cbf src
|
||||||
|
f95aedd487cc70f5986b1d306ed1edd9eee6a318 src/components
|
||||||
|
5464368e3972c1535bb6c8030f11463131df4b70 src/components/Comment.jsx
|
||||||
|
2d7454e4603695ada48e5c913dc518f46895ba48 src/components/Footer.astro
|
||||||
|
380188a4ca42c41538fe3bdc7e022106eae27f78 src/components/WorkPopup.astro
|
||||||
|
9bc5cb41c24efc40c0c90abe23ec56c974f16a6c src/env.d.ts
|
||||||
|
f05476d82a4c2a0e6df455a49ad6d30bd7644c70 src/layouts
|
||||||
|
103547ba97e707e288c9919c8475670bff8cdb3f src/layouts/KonectarLayout3.astro
|
||||||
|
cb5ac7714407a99705260b56e7412f13836b3c2f src/layouts/KonectarLayout.astro
|
||||||
|
a5168c250897c3767ecd9779dc22fcf60028b0fa src/layouts/Layout.astro
|
||||||
|
148b8826cf8d5062db3ad3ed0a8798d890655eaa src/pages
|
||||||
|
3aec86efdea3e65528c65634cecc2b72d8c9d03e src/pages/about-us
|
||||||
|
7a65ba5771ac3bc97ded1f7a46e4e81c8b48c369 src/pages/about-us/index.astro
|
||||||
|
dbbbf0034bb6068c5eebcd161c0e952b0ec4f707 src/pages/blog
|
||||||
|
7918bf29527ddb11b23baed7e4739b306c6006a6 src/pages/blog/index.astro
|
||||||
|
11cfef3843c351c24d50cedb5b26b274ec6d1439 src/pages/blog/[slug].astro
|
||||||
|
4bfefb802d529ea972a64f2f2329e673ab27c2b6 src/pages/careers
|
||||||
|
32323e938e57bb0d2155f174ec5d3da4626f1aec src/pages/careers/apply.astro
|
||||||
|
c5f61a7713d25e2827228a885e4abb84b62d20da src/pages/cookie_policy
|
||||||
|
e2ffff1d06512dbdac5d26705b200d574fa4a514 src/pages/cookie_policy/index.astro
|
||||||
|
92b6a007efc5d4c01b437743e8c3bf6402ccfda5 src/pages/data-services
|
||||||
|
6963dc73a13216bcef57002d0a7b3b38cb6baafa src/pages/data-services/index.astro
|
||||||
|
344cec87c18270023da2cc898d3728189f67da86 src/pages/get-demo
|
||||||
|
6060cafb8041b9488e17500991a9a6066dc93e56 src/pages/get-demo/index.astro
|
||||||
|
7406198851c29aa4fa026f85e6e5b631d268b535 src/pages/get-demo/[instance].astro
|
||||||
|
f94bc1ca1e0ccd93a9a3bbf524c0cb081121dcfc src/pages/hcp-engagement
|
||||||
|
6f10fd6cdea5d044b804ffc8dbb41c14ddc75434 src/pages/hcp-engagement/konectar.astro
|
||||||
|
b4f9101da09a0b6c25285a2827c475c40c519594 src/pages/hcp-management
|
||||||
|
588c0bd272db3c5220c2ffad653b020908fc4a42 src/pages/hcp-management/konectar.astro
|
||||||
|
e3ae1cc4c6eb4056c4e3883b3e34e64ae9625a89 src/pages/home
|
||||||
|
3f2c9b9e77a46581e562aa6fd920ec1cd54ab9bf src/pages/home.astro
|
||||||
|
51b36e09e57b3497ffc82a75c98c21fe7e03c05f src/pages/home/campaign.astro
|
||||||
|
554d80a17f3f257a55a8b36c0d4c3f44b8d13889 src/pages/index.astro
|
||||||
|
ff1df67310e8447edf337200116e885713bc5b8c src/pages/konectar
|
||||||
|
5f3ad9a9d2284f75721e18174cc86a35ebdc6398 src/pages/konectar/cardiology.astro
|
||||||
|
6172e405f9c19c8ac86695c1f8ba9472406950f2 src/pages/konectar/cns.astro
|
||||||
|
08ece0f7fac9a9668b077f177a4df454248983bd src/pages/konectar/dermatology.astro
|
||||||
|
a18afe184fa78d54a629857537ac4611c526f052 src/pages/konectar/endocrinology.astro
|
||||||
|
edf503f06fe667c5f9b74b0b3c1e26b8b3b3cf1a src/pages/konectar/eyecare.astro
|
||||||
|
bc7ba663f09f1165aec4ac47279e236c6c7701d5 src/pages/konectar/faq.astro
|
||||||
|
b9e13f25fd66021e7743e89637743b366dac657c src/pages/konectar/gastroenterology.astro
|
||||||
|
afc2a64a7e5a8f6624b896c18a0ed7d5341c6de7 src/pages/konectar/kol-management.astro
|
||||||
|
973a7ab18750ffbaa7be81b0056ac1ba71fa5d0b src/pages/konectar/nephrology.astro
|
||||||
|
ac2216fdcfd4d786d40d5b72bb5caaed7618ca9d src/pages/konectar/oncology.astro
|
||||||
|
540dd9da995daf970cfc72ab20ea4cfebebb9afd src/pages/konectar/oralhealth.astro
|
||||||
|
d17fb8b2b182df506a3600db4faa113171e151db src/pages/konectar/painmedicine.astro
|
||||||
|
a392c3c1c720a99d7a8a841cfb69eaadcef8184e src/pages/konectar/social.astro
|
||||||
|
e5f033464cea7ce917bfb61a3dbc31ec2af45ed6 src/pages/konectar/veterinary.astro
|
||||||
|
fd4a492a10c6d1e69d14961f5cdc82af2664c6b4 src/pages/konectar/virtualengagement.astro
|
||||||
|
b6ee9783ebd25356ff849948b016bdc6ae232dc0 src/pages/media-view
|
||||||
|
bb98a09522fc9e8e49e85e9bc25d13aa3d514c74 src/pages/media-view/index.astro
|
||||||
|
e6d08a580bd1b4b1a4dc1e67bc87d3301df83b34 src/pages/meet-us
|
||||||
|
42964c63d225ee6029057fe35f8360547c29b0ed src/pages/meet-us/index.astro
|
||||||
|
9af216a19b226e3a03cec47ebe3a31076bc887ce src/pages/privacy
|
||||||
|
3f7310a565f52bbe3f0edea6449bf3e856fcee35 src/pages/privacy/index.astro
|
||||||
|
e7f7167b0f330dcbded704a4231cd88ba2152866 src/pages/products
|
||||||
|
8d2295930dd37dd4962d0108fd1b901a3a1d6b8a src/pages/products/index.astro
|
||||||
|
7edff2b15bc705bcbe799486c277648334009e35 src/pages/resources
|
||||||
|
1dfbbc0f12dfba0b5975d85bb79b8b764c491c59 src/pages/resources/articles.astro
|
||||||
|
71094ccccadec2f1301c920bd731cb3276918fed src/pages/resources/blogs.astro
|
||||||
|
69e02c39a3fbb5f2f6294c1df2e5ae7f81aa19e9 src/pages/resources/sitemap.astro
|
||||||
|
43897279cff7ceb8db42d580d84a790f6e683da0 src/pages/support
|
||||||
|
7d33bcaa5e2b42c8b994ce6f823272235fd152e7 src/pages/support/index.astro
|
||||||
|
4e782fbbd189050bef2cf653a549934f4f794806 src/pages/work-with-us
|
||||||
|
3e0ae262720f99b6a5032b2d232306ffc6d00806 src/pages/work-with-us/index.astro
|
||||||
|
8074ee177e637136e792996f17309259f60b38e2 src/styles
|
||||||
|
62d21bc273298f3993f1641c322c606a36382c50 src/styles/global.css
|
||||||
|
d78f81ec4e8e98ee05c06ee754e17fc255d3b646 tsconfig.json
|
||||||
|
6f9ad6932766bce9f7cb85ce1afcc1236b3d5972 .vscode
|
||||||
|
22a15055d638988eb33bb61536d27f623df92e4a .vscode/extensions.json
|
||||||
|
d6422097621fd7c1b1ccc6daa670c46aed7ef5b7 .vscode/launch.json
|
||||||
|
b92839d53233bcd653960fd719aae7278810d69f .vscode/settings.json
|
|
@ -0,0 +1,20 @@
|
||||||
|
import { defineConfig } from 'astro/config';
|
||||||
|
import react from '@astrojs/react';
|
||||||
|
import sitemap from '@astrojs/sitemap';
|
||||||
|
|
||||||
|
// https://astro.build/config
|
||||||
|
export default defineConfig({
|
||||||
|
vite: {
|
||||||
|
envPrefix: 'PUBLIC_', // This ensures that variables with this prefix are exposed to the client
|
||||||
|
},
|
||||||
|
site: 'http://127.0.0.1',
|
||||||
|
integrations: [sitemap(),react()],
|
||||||
|
prefetch: {
|
||||||
|
defaultStrategy: 'viewport',
|
||||||
|
prefetchAll: true
|
||||||
|
},
|
||||||
|
server: {
|
||||||
|
host: true,
|
||||||
|
port: 4321, // or any preferred port
|
||||||
|
},
|
||||||
|
});
|
|
@ -0,0 +1,24 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Define the current Astro project directory
|
||||||
|
ASTRO_PROJECT_DIR="$(pwd)"
|
||||||
|
|
||||||
|
# Build the Astro project
|
||||||
|
echo "Building the Astro project..."
|
||||||
|
npm run build
|
||||||
|
|
||||||
|
# Define the destination as the parent folder of the Astro project directory
|
||||||
|
DESTINATION_DIR="$(dirname "$ASTRO_PROJECT_DIR")"
|
||||||
|
|
||||||
|
# Check if the build was successful and the dist folder exists
|
||||||
|
if [ -d "$ASTRO_PROJECT_DIR/dist" ]; then
|
||||||
|
echo "Build successful. Transferring files to the parent directory..."
|
||||||
|
|
||||||
|
# Copy all files and directories from the dist folder to the parent directory
|
||||||
|
cp -R "$ASTRO_PROJECT_DIR/dist/." "$DESTINATION_DIR"
|
||||||
|
|
||||||
|
echo "Transfer complete. The files are now in $DESTINATION_DIR."
|
||||||
|
else
|
||||||
|
echo "Build failed or dist folder not found."
|
||||||
|
fi
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"name": "aissel-website-astro",
|
||||||
|
"type": "module",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "astro dev",
|
||||||
|
"start": "astro dev",
|
||||||
|
"build": "astro build",
|
||||||
|
"preview": "astro preview",
|
||||||
|
"astro": "astro"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@astrojs/react": "^3.6.2",
|
||||||
|
"@astrojs/sitemap": "^3.2.1",
|
||||||
|
"astro": "^4.16.6",
|
||||||
|
"dompurify": "^3.1.7",
|
||||||
|
"dotenv": "^16.4.5",
|
||||||
|
"mysql2": "^3.11.3",
|
||||||
|
"react": "^18.3.1",
|
||||||
|
"react-dom": "^18.3.1"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,49 @@
|
||||||
|
import React, { useEffect, useState } from 'react';
|
||||||
|
|
||||||
|
const Comment = ({ slug }) => {
|
||||||
|
const [comments, setComments] = useState(null);
|
||||||
|
const [error, setError] = useState(null);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
// Define a function to fetch comments
|
||||||
|
const fetchComments = async () => {
|
||||||
|
try {
|
||||||
|
const response = await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/blog/get-comment/${slug}`);
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error('Failed to fetch comments');
|
||||||
|
}
|
||||||
|
const res = await response.json();
|
||||||
|
setComments(res);
|
||||||
|
} catch (error) {
|
||||||
|
setError(error.message);
|
||||||
|
console.log(error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
fetchComments();
|
||||||
|
}, [slug]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className="row">
|
||||||
|
{error && <p>Error: {error}</p>}
|
||||||
|
{comments ? (
|
||||||
|
<>
|
||||||
|
<label className="comment-title" htmlFor="comments">
|
||||||
|
{comments.commentsCount} Comments
|
||||||
|
</label>
|
||||||
|
<hr />
|
||||||
|
<div
|
||||||
|
className="comments"
|
||||||
|
dangerouslySetInnerHTML={{ __html: comments.commentsHtml }}
|
||||||
|
></div>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<h6>Loading comments...</h6>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Comment;
|
|
@ -0,0 +1,430 @@
|
||||||
|
---
|
||||||
|
let data = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/chatbox`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
data = res.content;
|
||||||
|
// console.log(data);
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Footer ∋∋∋ -->
|
||||||
|
<footer>
|
||||||
|
<div class="container-fluid px-lg-4">
|
||||||
|
<div class="row pt-3 pt-lg-5 pt-md-5 pb-3">
|
||||||
|
<div class="col-md-3 col-xl-3">
|
||||||
|
<div class="footerLinksSection">
|
||||||
|
<ul class="list-inline footerLinks list-unstyled">
|
||||||
|
<li class="list-inline-item first-item">
|
||||||
|
<a href="/"
|
||||||
|
><img
|
||||||
|
src="/assets/images/optimized_images/aissel_white_logo.webp"
|
||||||
|
alt="Aissel white logo"
|
||||||
|
/></a>
|
||||||
|
</li>
|
||||||
|
<li class="list-inline-item">
|
||||||
|
<img
|
||||||
|
alt="Aissel Email"
|
||||||
|
class="contact-icon"
|
||||||
|
src="/assets/images/envelope5.png"
|
||||||
|
/><a
|
||||||
|
class="support_email_id"
|
||||||
|
href="mailto:support@aissel.com"
|
||||||
|
>support@aissel.com</a>
|
||||||
|
</li>
|
||||||
|
<li class="list-inline-item">
|
||||||
|
<img
|
||||||
|
alt="Aissel Phone"
|
||||||
|
class="contact-icon"
|
||||||
|
src="/assets/images/telephone.png"
|
||||||
|
/><a
|
||||||
|
class="footer_phone"
|
||||||
|
href="tel:+918362351011"
|
||||||
|
>+91 (836) 235 1011</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="certification position-relative">
|
||||||
|
<img
|
||||||
|
alt="Aissel Certification"
|
||||||
|
class="aissel-certified position-absolute"
|
||||||
|
src="/assets/images/certification_print.png"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-9 col-xl-9">
|
||||||
|
<div class="row footerLinks">
|
||||||
|
<div class="col-6 col-md-3 px-0">
|
||||||
|
<label for="" class="py-3">Products</label>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/products#kolm-software"
|
||||||
|
>KOLM Software</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/products#integrations"
|
||||||
|
>Integrations</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/products#salesforce-app"
|
||||||
|
>Salesforce App</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/products#media-intelligence"
|
||||||
|
>Media Intelligence</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/konectar/cns"
|
||||||
|
>konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/konectar/oncology"
|
||||||
|
>konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/konectar/oralhealth"
|
||||||
|
>konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/konectar/cardiology"
|
||||||
|
>konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/konectar/endocrinology"
|
||||||
|
>konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/konectar/social"
|
||||||
|
>konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/konectar/veterinary"
|
||||||
|
>konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/konectar/virtualengagement"
|
||||||
|
>konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/konectar/gastroenterology"
|
||||||
|
>konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/konectar/painmedicine"
|
||||||
|
>konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/konectar/dermatology"
|
||||||
|
>konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/konectar/eyecare"
|
||||||
|
>konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/konectar/nephrology"
|
||||||
|
>konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 col-md-3 px-0">
|
||||||
|
<label for="" class="py-3">Data Services</label>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/data-services#band-one"
|
||||||
|
>KOL Identification</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/data-services#band-four"
|
||||||
|
>Influence Mapping</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/data-services#band-seven_ds"
|
||||||
|
>KOL Profiling</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/data-services#band-nine"
|
||||||
|
>Institution Profiling</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 col-md-3 px-0">
|
||||||
|
<label for="" class="py-3">About</label>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/about-us#company-profile"
|
||||||
|
>Our Company</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/about-us#company-values"
|
||||||
|
>Our Values</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/about-us#community-initiatives"
|
||||||
|
>CSR</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/about-us#contact-us"
|
||||||
|
>Contact us</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/media-view"
|
||||||
|
>Media</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/meet-us"
|
||||||
|
>Meet Us</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/work-with-us"
|
||||||
|
>Work With Us</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/privacy"
|
||||||
|
>Privacy</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="page-scroll"
|
||||||
|
href="/cookie_policy"
|
||||||
|
>Cookie Policy</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 col-md-3 px-0">
|
||||||
|
<label for="" class="py-3">Resources</label>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li>
|
||||||
|
<a href="/blog"
|
||||||
|
>Blog</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/resources/articles"
|
||||||
|
>Case Studies</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/resources/articles"
|
||||||
|
>White Paper</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/resources/articles"
|
||||||
|
>Brochure</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/resources/articles"
|
||||||
|
>Infographics</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="/resources/sitemap"
|
||||||
|
>Sitemap</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row pb-5">
|
||||||
|
<div class="col-12 social-links d-flex justify-content-end">
|
||||||
|
<a
|
||||||
|
target="new"
|
||||||
|
href="https://www.facebook.com/Aisseltechnologies"
|
||||||
|
><img
|
||||||
|
alt="Aissel Facebook"
|
||||||
|
class="fb_icon footer-icon"
|
||||||
|
src="/assets/images/fb_icon.png"
|
||||||
|
/></a
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
target="new"
|
||||||
|
href="https://in.linkedin.com/company/aissel-technologies"
|
||||||
|
><img
|
||||||
|
alt="Aissel LinkedIn"
|
||||||
|
class="in_icon footer-icon"
|
||||||
|
src="/assets/images/in_icon.png"
|
||||||
|
/></a
|
||||||
|
>
|
||||||
|
<a target="new" href="https://twitter.com/aisseltech"
|
||||||
|
><img
|
||||||
|
class="tw_icon footer-icon"
|
||||||
|
alt="Aissel Twitter"
|
||||||
|
src="/assets/images/tw_icon.png"
|
||||||
|
/></a
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
target="new"
|
||||||
|
href="https://instagram.com/aissel_technologies"
|
||||||
|
><img
|
||||||
|
class="inst_icon footer-icon"
|
||||||
|
alt="Aissel Instagram"
|
||||||
|
src="/assets/images/inst_icon.png"
|
||||||
|
/></a
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
target="new"
|
||||||
|
href="https://www.youtube.com/channel/UCvqymBnLHv8ou0AHMpSRhOg"
|
||||||
|
><img
|
||||||
|
class="footer-icon you_icon"
|
||||||
|
alt="Aissel Youtube"
|
||||||
|
src="/assets/images/you_icon.png"
|
||||||
|
/></a
|
||||||
|
>
|
||||||
|
<div class="" style="width:42px;"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row copyright px-0 mx-0">
|
||||||
|
<div class="col-xs-8 col-md-7 col-lg-6 col-sm-6"></div>
|
||||||
|
<div class="col-xs-4 col-md-5 col-lg-6 col-sm-6">
|
||||||
|
<p class="copy_right_text mt-2 mb-0">
|
||||||
|
© 2024 Aissel Technologies Pvt. Ltd. All rights
|
||||||
|
reserved
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
<script>
|
||||||
|
$(function () {
|
||||||
|
$(".form-control").on("keypress", function (e) {
|
||||||
|
if ($(this).val().trim() == "") {
|
||||||
|
if (e.which == 32) {
|
||||||
|
// console.log("Space Detected");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Cookie ∋∋∋ -->
|
||||||
|
<style type="text/css">
|
||||||
|
.cookie-block {
|
||||||
|
background-color: #3b4045 !important;
|
||||||
|
color: white;
|
||||||
|
text-align: left;
|
||||||
|
padding: 10px 0 10px 0;
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
z-index: 1111;
|
||||||
|
}
|
||||||
|
.cookie-block a {
|
||||||
|
color: white;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
.cookie-text {
|
||||||
|
font-size: 14px;
|
||||||
|
font-family: asap;
|
||||||
|
line-height: 1.42857143;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<script type="text/javascript" is:inline>
|
||||||
|
function updateCookieAck() {
|
||||||
|
$("#cookie-message").hide();
|
||||||
|
$.ajax({
|
||||||
|
url: `http://192.168.2.141/aissel-website/aissel_policy/update_cookie_ack`,
|
||||||
|
type: "post",
|
||||||
|
dataType: "json",
|
||||||
|
success: function (retDataArr) {
|
||||||
|
if (retDataArr.status) {
|
||||||
|
$("#cookie-block").hide();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<!-- <section id="cookie-block">
|
||||||
|
<div class="cookie-block">
|
||||||
|
<div class="container" id="cookie-message">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-9 col-9 px-sm-5 px-3">
|
||||||
|
<p class="cookie-text mb-0">We use cookies to understand how you use our site and to improve your experience. This includes personalizing content and advertising. To learn more, <a href="/cookie_policy">Click here</a>. By continuing to use our site, you accept our use of cookies and revised <a href="/privacy">Privacy Policy</a>.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-1 col-3 text-center accept-btn-css py-sm-0 py-1">
|
||||||
|
<button type="button" class="btn btn-light btn-outline-light" style="font-weight: bold; font-size:12px; padding:5px 15px; color:#333;" onclick="updateCookieAck();return false;">Accept</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section> -->
|
||||||
|
<!-- *** Template Main JS File *** -->
|
||||||
|
<script
|
||||||
|
src="/assets/js/main.js"
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var base_url = "";
|
||||||
|
|
||||||
|
document.addEventListener("DOMContentLoaded", function () {
|
||||||
|
var scrollSpy = new bootstrap.ScrollSpy(document.body, {
|
||||||
|
target: "#header",
|
||||||
|
offset: 70,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div id="chatbox" data-key={data}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script is:inline>
|
||||||
|
const chat = document.getElementById('chatbox');
|
||||||
|
const key = chat.dataset.key;
|
||||||
|
eval(key);
|
||||||
|
</script>
|
|
@ -0,0 +1,78 @@
|
||||||
|
---
|
||||||
|
const {id} = Astro.props;
|
||||||
|
let career = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/careers/show_popup/${id}`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
career = res.career_job;
|
||||||
|
// console.log(data);
|
||||||
|
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<div class="modal fade" id=`careerModal${career.id}` data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
|
||||||
|
<div class="modal-dialog modal-lg">
|
||||||
|
<div class="modal-content job-details">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h5 class="modal-title" id="exampleModalLabel">{career.title}</h5>
|
||||||
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="container" style="padding: 0;">
|
||||||
|
<div class="each_section row jobDiv noPadding" style="padding: 0;border: none;">
|
||||||
|
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4 noPadding">
|
||||||
|
<img class="mobileImage" style="height:auto;" src=`https://www.aissel.com/public/uploads/career_images/${career.img_url}`>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12 col-sm-8 col-md-8 col-lg-8">
|
||||||
|
<h4 class="section_title">Aissel Technologies</h4>
|
||||||
|
<p class="section_content">Aissel Technologies is a Software Technology Solutions and Business Research company with offices at Hubli & Bangalore, India and Massachusetts, USA. Our enterprise-class software solutions cater to the business intelligence needs of industry leading healthcare companies globally.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- <div class="each_section col-xs-12 col-sm-12 col-md-12 col-lg-12">
|
||||||
|
<div class="col-xs-12" >
|
||||||
|
<p class="section_title">Aissel Technologies</p>
|
||||||
|
<p class="section_content">Aissel Technologies is a Software Technology Solutions and Business Research company with offices at Hubli & Bangalore, India and Massachusetts, USA. Our enterprise-class software solutions cater to the business intelligence needs of industry leading healthcare companies globally.</p>
|
||||||
|
</div>
|
||||||
|
</div>-->
|
||||||
|
<br>
|
||||||
|
<div class="each_section col-xs-12 col-sm-12 col-md-12 col-lg-12">
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<p class="section_title">Job Description</p>
|
||||||
|
<p class="section_content"><Fragment set:html={career.description}/></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="each_section col-xs-12 col-sm-12 col-md-12 col-lg-12">
|
||||||
|
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<p class="section_title">Responsibilities</p>
|
||||||
|
<Fragment set:html={career.responsibility}/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="each_section col-xs-12 col-sm-12 col-md-12 col-lg-12">
|
||||||
|
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<p class="section_title">Essential Skills</p>
|
||||||
|
<Fragment set:html={career.skills}/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<a type="button" href=`/careers/apply` class="custom-btn btn btn-primary">Apply</a>
|
||||||
|
<button type="button" class="custom-btn btn btn-default" data-bs-dismiss="modal">Close</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -0,0 +1 @@
|
||||||
|
/// <reference path="../.astro/types.d.ts" />
|
|
@ -0,0 +1,134 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
import Footer from "../components/Footer.astro";
|
||||||
|
|
||||||
|
let page_url = Astro.url.pathname.replace(/\/$/, '');
|
||||||
|
|
||||||
|
page_url = page_url.replace(/\/(.*)/, (_, rest) => rest.replace(/\//g, '|'));
|
||||||
|
|
||||||
|
let tags = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/list-keywords/${page_url}`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
tags = res;
|
||||||
|
// console.log(res);
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
let tag_details = null
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/tags-manager`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
tag_details = res;
|
||||||
|
// console.log(res);
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
const website_url = import.meta.env.PUBLIC_WEBSITE_URL;
|
||||||
|
const { title, slug } = Astro.props;
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>{tags.title}</title>
|
||||||
|
|
||||||
|
<!-- *** Meta Tags *** -->
|
||||||
|
<!-- <meta name="robots" content="noindex, nofollow"> -->
|
||||||
|
{tags.robots_index !== "" && tags.robots_follow !== "" ? (
|
||||||
|
<meta name="robots" content={`${tags.robots_index} , ${tags.robots_follow} `} />
|
||||||
|
) : (
|
||||||
|
<meta name="robots" content="noindex, nofollow" />
|
||||||
|
)}
|
||||||
|
|
||||||
|
<meta name="description" content=`${tags.description}` />
|
||||||
|
<meta name="keywords" content=`${tags.keyword}` />
|
||||||
|
|
||||||
|
{tags.og_tags && Object.entries(tags.og_tags).map(([tag, value]) => (
|
||||||
|
<meta property=`${tag}` content=$`{value}` />
|
||||||
|
))}
|
||||||
|
|
||||||
|
<link rel="canonical" href={tags.canonical} />
|
||||||
|
<!-- *** Favicons *** -->
|
||||||
|
<link href="/assets/favicon.ico" rel="icon">
|
||||||
|
<!-- *** Provider CSS Files *** -->
|
||||||
|
<link href="/assets/css/5.0/bootstrap.min.css" rel="stylesheet"/>
|
||||||
|
<link href="/assets/css/bootstrap-icons.css" rel="stylesheet" />
|
||||||
|
<!-- <link href="/assets/css/konectar.css" rel="stylesheet" /> -->
|
||||||
|
<!-- <link href="/assets/css/konectar_template.css" rel="stylesheet" /> -->
|
||||||
|
<link href="/assets/css/responsive.css" rel="stylesheet" />
|
||||||
|
|
||||||
|
|
||||||
|
<!-- *** Template Main CSS File *** -->
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/style.css"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/home.css"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/fonts.css" rel=preload/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/responsive.css"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/jquery.webui-popover.css"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/animate.css"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/klaro/klaro.min.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/font-awesome/6.3.0/css/all.min.css" />
|
||||||
|
<!-- Swiper CSS file -->
|
||||||
|
<link rel="stylesheet" href="/assets/css/swiper-bundle.min.css" />
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Swiper JS file -->
|
||||||
|
<script src="/assets/js/swiper-bundle.min.js" is:inline></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- *** Template Main Jquery File *** -->
|
||||||
|
<script src="/assets/js/5.0/jquery.min.js" type="text/javascript"
|
||||||
|
data-astro-rerun></script>
|
||||||
|
<!-- *** Vendor JS Files *** -->
|
||||||
|
<script src="/assets/js/5.0/popper.min.js" crossorigin="anonymous" ></script>
|
||||||
|
<script src="/assets/js/5.0/bootstrap.min.js" crossorigin="anonymous" ></script>
|
||||||
|
<!-- *** Validation Script *** -->
|
||||||
|
<script src="/assets/js/jquery.validate.js" crossorigin="anonymous" ></script>
|
||||||
|
<!-- *** Extra Script *** -->
|
||||||
|
<script src="/assets/js/jquery.imageslider.js" defer
|
||||||
|
data-astro-rerun ></script>
|
||||||
|
<script src="/assets/js/jquery.webui-popover.js" type="text/javascript"
|
||||||
|
data-astro-rerun></script>
|
||||||
|
<script src="/assets/js/klaro/klaro.js" defer></script>
|
||||||
|
|
||||||
|
{tag_details.before_head && (
|
||||||
|
<Fragment set:html={tag_details.before_head}></Fragment>
|
||||||
|
)}
|
||||||
|
<!-- <div set:html={tag_details.before_head}></div> -->
|
||||||
|
</head>
|
||||||
|
<body id="body">
|
||||||
|
<!-- <div set:html={tag_details.initial_body_content}></div> -->
|
||||||
|
{tag_details.initial_body_content && (
|
||||||
|
<Fragment set:html={tag_details.initial_body_content}></Fragment>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<slot/>
|
||||||
|
<div id="website_url" data-key={website_url}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<div id="instance_name" data-key={slug}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script src="/assets/js/konectar.js" is:inline ></script>
|
||||||
|
<Footer/>
|
||||||
|
<Fragment set:html={tag_details.before_body}/>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,153 @@
|
||||||
|
---
|
||||||
|
import Footer from "../components/Footer.astro";
|
||||||
|
|
||||||
|
import { ViewTransitions } from 'astro:transitions';
|
||||||
|
const website_url = import.meta.env.PUBLIC_WEBSITE_URL;
|
||||||
|
|
||||||
|
const { title } = Astro.props;
|
||||||
|
---
|
||||||
|
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta
|
||||||
|
charset="utf-8"
|
||||||
|
name="viewport"
|
||||||
|
content="width=device-width, initial-scale=1.0"
|
||||||
|
/>
|
||||||
|
<title>{title}</title>
|
||||||
|
<!-- <ViewTransitions /> -->
|
||||||
|
<!-- *** Meta Tags *** -->
|
||||||
|
<!-- <meta name="robots" content="noindex, nofollow"> -->
|
||||||
|
<meta name="robots" content="1 , 1 " />
|
||||||
|
<meta
|
||||||
|
name="description"
|
||||||
|
content="Explore Konectar's oncology solutions for advanced cancer care. Discover innovative treatments and technologies at Aissel. Learn more today!"
|
||||||
|
/>
|
||||||
|
<meta
|
||||||
|
name="keywords"
|
||||||
|
content="Medical Affairs, Clinical Affairs, Commercial Team,Thought Leader analytics, Machine Learning, Natural Language Processing, Cloud software,Oncology KOLs,Oncology Experts,Oncology HCPs,CMS Open Payment, KOL Mapping, KOL management, KOL influence mapping, digital opinion leader pharma, digital key opinion leader, digital opinion leaders, digital opinion influencers, hcp management, KOLs, key opinion leader, hcp tiering, oncology opinion leaders, oncology key opinion leaders"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<meta
|
||||||
|
property="og:title"
|
||||||
|
content="konectar KOL Management Platform | Oncology Experts"
|
||||||
|
/>
|
||||||
|
<meta
|
||||||
|
property="og:description"
|
||||||
|
content="konectar Oncology Platform - your resource to Discover, Profile and Engage the right Oncology Experts. Get access to over 70,000 Oncology Experts carefully curated from millions of data points."
|
||||||
|
/>
|
||||||
|
<meta property="og;url" content="/konectar/oncology" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta
|
||||||
|
property="og:image"
|
||||||
|
content="/assets/images/konectar/veterinary/konectar_social_image.png"
|
||||||
|
/>
|
||||||
|
<link rel="canonical" href="/konectar/oncology" />
|
||||||
|
<!-- *** Favicons *** -->
|
||||||
|
<link href="/assets/favicon.ico" rel="icon" />
|
||||||
|
<!-- *** Provider CSS Files *** -->
|
||||||
|
<link href="/assets/css/5.0/bootstrap.min.css" rel="stylesheet" defer />
|
||||||
|
<link href="/assets/css/bootstrap-icons.css" rel="stylesheet" />
|
||||||
|
<!-- *** Template Main CSS File *** -->
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/style.css"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/home.css"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/fonts.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/responsive.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/jquery.webui-popover.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/animate.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/klaro/klaro.min.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/font-awesome/6.3.0/css/all.min.css" />
|
||||||
|
<!-- Swiper CSS file -->
|
||||||
|
<link rel="stylesheet" href="/assets/css/swiper-bundle.min.css" />
|
||||||
|
<link rel="stylesheet" href="/assets/css/konectar.css" />
|
||||||
|
|
||||||
|
<link
|
||||||
|
rel="preload"
|
||||||
|
fetchpriority="high"
|
||||||
|
as="image"
|
||||||
|
href="/assets/images/homepage/home_image.svg"
|
||||||
|
type="image/webp"
|
||||||
|
/>
|
||||||
|
<!-- Swiper JS file -->
|
||||||
|
<script src="/assets/js/swiper-bundle.min.js" defer></script>
|
||||||
|
|
||||||
|
<!-- *** Template Main Jquery File *** -->
|
||||||
|
<script src=" /assets/js/5.0/jquery.min.js" defer></script>
|
||||||
|
<!-- *** Vendor JS Files *** -->
|
||||||
|
<script src="/assets/js/5.0/popper.min.js" crossorigin="anonymous" defer
|
||||||
|
></script>
|
||||||
|
<script
|
||||||
|
src="/assets/js/5.0/bootstrap.min.js"
|
||||||
|
crossorigin="anonymous"
|
||||||
|
defer></script>
|
||||||
|
<!-- *** Validation Script *** -->
|
||||||
|
<script
|
||||||
|
src="/assets/js/jquery.validate.js"
|
||||||
|
crossorigin="anonymous"
|
||||||
|
defer></script>
|
||||||
|
<!-- *** Extra Script *** -->
|
||||||
|
<script src="/assets/js/jquery.imageslider.js" defer></script>
|
||||||
|
<script src="/assets/js/jquery.webui-popover.js" defer></script>
|
||||||
|
|
||||||
|
<script src="/assets/js/CKEditor5/ckeditor5.js" defer></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
(function (w, d, s, l, i) {
|
||||||
|
w[l] = w[l] || [];
|
||||||
|
w[l].push({
|
||||||
|
"gtm.start": new Date().getTime(),
|
||||||
|
event: "gtm.js",
|
||||||
|
});
|
||||||
|
var f = d.getElementsByTagName(s)[0],
|
||||||
|
j = d.createElement(s),
|
||||||
|
dl = l != "dataLayer" ? "&l=" + l : "";
|
||||||
|
j.async = true;
|
||||||
|
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
|
||||||
|
f.parentNode.insertBefore(j, f);
|
||||||
|
})(window, document, "script", "dataLayer", "GTM-T6MMSH3");
|
||||||
|
</script>
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org/",
|
||||||
|
"@type": "WebSite",
|
||||||
|
"name": "Aissel Technologies",
|
||||||
|
"url": "/",
|
||||||
|
"potentialAction": {
|
||||||
|
"@type": "SearchAction",
|
||||||
|
"target": "/konectar/kol-management{search_term_string}konectar",
|
||||||
|
"query-input": "required name=search_term_string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "Corporation",
|
||||||
|
"name": "aissel Technologies",
|
||||||
|
"alternateName": "konectar",
|
||||||
|
"url": "/",
|
||||||
|
"logo": "/assets/images/aissel_logo.png",
|
||||||
|
"sameAs": [
|
||||||
|
"https://www.facebook.com/aisseltechnologies/",
|
||||||
|
"https://www.linkedin.com/company/aissel-technologies/",
|
||||||
|
"https://twitter.com/aisseltech"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body id="body">
|
||||||
|
<noscript
|
||||||
|
><iframe
|
||||||
|
src='\"https://www.googletagmanager.com/ns.html?id=GTM-T6MMSH3\"\r\nheight=\"0\"'
|
||||||
|
width='\"0\"'
|
||||||
|
style='\"display:none;visibility:hidden\"'></iframe></noscript
|
||||||
|
>
|
||||||
|
<slot/>
|
||||||
|
<div id="website_url" data-key={website_url}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script src="/assets/js/konectar.js" is:inline ></script>
|
||||||
|
<Footer/>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,349 @@
|
||||||
|
---
|
||||||
|
import Footer from "../components/Footer.astro";
|
||||||
|
import { ViewTransitions } from 'astro:transitions';
|
||||||
|
const { title, navNum, konectar_logo } = Astro.props;
|
||||||
|
|
||||||
|
let page_url = Astro.url.pathname.replace(/\/$/, '');
|
||||||
|
if(page_url==''){
|
||||||
|
page_url = '/home';
|
||||||
|
}
|
||||||
|
page_url = page_url.replace(/\/(.*)/, (_, rest) => rest.replace(/\//g, '|'));
|
||||||
|
|
||||||
|
let tags = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/list-keywords/${page_url}`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
tags = res;
|
||||||
|
console.log(page_url);
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
let tag_details = null
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/tags-manager`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
tag_details = res;
|
||||||
|
// console.log(res);
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
---
|
||||||
|
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta
|
||||||
|
charset="utf-8"
|
||||||
|
name="viewport"
|
||||||
|
content="width=device-width, initial-scale=1.0"
|
||||||
|
/>
|
||||||
|
<title>{tags.title}</title>
|
||||||
|
<!-- <ViewTransitions/> -->
|
||||||
|
<!-- *** Meta Tags *** -->
|
||||||
|
<!-- <meta name="robots" content="noindex, nofollow"> -->
|
||||||
|
{tags.robots_index !== "" && tags.robots_follow !== "" ? (
|
||||||
|
<meta name="robots" content={`${tags.robots_index} , ${tags.robots_follow} `} />
|
||||||
|
) : (
|
||||||
|
<meta name="robots" content="noindex, nofollow" />
|
||||||
|
)}
|
||||||
|
|
||||||
|
<meta name="description" content={tags.description} />
|
||||||
|
<meta name="keywords" content=`${tags.keyword}` />
|
||||||
|
|
||||||
|
{tags.og_tags && Object.entries(tags.og_tags).map(([tag, value]) => (
|
||||||
|
|
||||||
|
<meta property=`${tag}` content=`${value}` />
|
||||||
|
))}
|
||||||
|
|
||||||
|
<link rel="canonical" href={tags.canonical} />
|
||||||
|
<!-- *** Favicons *** -->
|
||||||
|
<link
|
||||||
|
href="/assets/favicon.ico"
|
||||||
|
rel="icon"
|
||||||
|
/>
|
||||||
|
<!-- *** Provider CSS Files *** -->
|
||||||
|
<link
|
||||||
|
href="/assets/css/5.0/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
defer
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="/assets/css/bootstrap-icons.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<!-- *** Template Main CSS File *** -->
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
type="text/css"
|
||||||
|
href="/assets/css/style.css"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
type="text/css"
|
||||||
|
href="/assets/css/home.css"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
type="text/css"
|
||||||
|
href="/assets/css/fonts.css"
|
||||||
|
rel="preload"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
type="text/css"
|
||||||
|
href="/assets/css/responsive.css"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
type="text/css"
|
||||||
|
href="/assets/css/jquery.webui-popover.css"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
type="text/css"
|
||||||
|
href="/assets/css/animate.css"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
type="text/css"
|
||||||
|
href="/assets/css/font-awesome/6.3.0/css/all.min.css"
|
||||||
|
/>
|
||||||
|
<!-- Swiper CSS file -->
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="/assets/css/swiper-bundle.min.css"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<link
|
||||||
|
rel="preload"
|
||||||
|
fetchpriority="high"
|
||||||
|
as="image"
|
||||||
|
href="/assets/images/homepage/home_image.svg"
|
||||||
|
type="image/webp"
|
||||||
|
/>
|
||||||
|
<!-- Swiper JS file -->
|
||||||
|
<script
|
||||||
|
src="/assets/js/swiper-bundle.min.js"
|
||||||
|
defer
|
||||||
|
></script>
|
||||||
|
|
||||||
|
<!-- *** Template Main Jquery File *** -->
|
||||||
|
<!-- <script src="/assets/js/5.0/jquery.min.js" defer></script> -->
|
||||||
|
<script src="/assets/js/5.0/jquery.min.js" type="text/javascript"
|
||||||
|
data-astro-rerun></script>
|
||||||
|
<!-- *** Vendor JS Files *** -->
|
||||||
|
<script
|
||||||
|
src="/assets/js/5.0/popper.min.js"
|
||||||
|
crossorigin="anonymous" ></script>
|
||||||
|
<script
|
||||||
|
src="/assets/js/5.0/bootstrap.min.js"
|
||||||
|
crossorigin="anonymous" ></script>
|
||||||
|
<!-- *** Validation Script *** -->
|
||||||
|
<script
|
||||||
|
src="/assets/js/jquery.validate.js"
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
<!-- *** Extra Script *** -->
|
||||||
|
<!-- TODO below 3 also causing problem -->
|
||||||
|
<script
|
||||||
|
src="/assets/js/jquery.imageslider.js"
|
||||||
|
defer
|
||||||
|
data-astro-rerun ></script>
|
||||||
|
<script
|
||||||
|
src="/assets/js/jquery.webui-popover.js"
|
||||||
|
defer
|
||||||
|
></script>
|
||||||
|
|
||||||
|
<script
|
||||||
|
src="/assets/js/CKEditor5/ckeditor5.js"
|
||||||
|
defer
|
||||||
|
></script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
{tag_details.before_head && (
|
||||||
|
<Fragment set:html={tag_details.before_head}></Fragment>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<!-- <script set:html={tag_details.before_head}></script> -->
|
||||||
|
<body id="body">
|
||||||
|
<!-- <ViewTransitions /> -->
|
||||||
|
<!-- <div set:html={tag_details.initial_body_content}></div> -->
|
||||||
|
{tag_details.initial_body_content && (
|
||||||
|
<Fragment set:html={tag_details.initial_body_content}></Fragment>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Top Bar ∋∋∋ -->
|
||||||
|
<section id="topbar" class="d-flex align-items-center">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex align-items-center pe-4">
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966 8181</a> -->
|
||||||
|
<a
|
||||||
|
class="d-none d-sm-block"
|
||||||
|
href="/meet-us">Meet Us</a
|
||||||
|
>
|
||||||
|
<span class="d-none d-sm-block">|</span>
|
||||||
|
<a
|
||||||
|
class="d-none d-sm-block"
|
||||||
|
href="/work-with-us"
|
||||||
|
>Work with Us</a
|
||||||
|
>
|
||||||
|
<span class="d-none d-sm-block">|</span>
|
||||||
|
<a
|
||||||
|
class="d-none d-sm-block scrollto"
|
||||||
|
href="/about-us#contact-us"
|
||||||
|
>Contact Us</a
|
||||||
|
>
|
||||||
|
<span class="d-none d-sm-block">|</span>
|
||||||
|
<a
|
||||||
|
class="d-none d-sm-block"
|
||||||
|
href="/media-view">Media</a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<header id="header" class="align-items-center" >
|
||||||
|
<div
|
||||||
|
id="header-container"
|
||||||
|
class="container-fluid align-items-center justify-content-between"
|
||||||
|
>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-2 col-md-3 col-sm-4 col-6 logo-section">
|
||||||
|
<!-- image logo -->
|
||||||
|
<a href="/" class="logo"
|
||||||
|
><img
|
||||||
|
src=`${konectar_logo==1 ? '/assets/images/konectar/logo/aissel_konectar_logo.svg': '/assets/images/aissel_logo.png'}`
|
||||||
|
alt="aissel logo"
|
||||||
|
/></a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-10 col-md-9 col-sm-8 col-6 nav-section">
|
||||||
|
<div
|
||||||
|
class="navbar-section d-flex justify-content-end"
|
||||||
|
style="margin-top: 12px;"
|
||||||
|
>
|
||||||
|
<div class="col-lg-10 col-md-10">
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css"
|
||||||
|
/>
|
||||||
|
<nav
|
||||||
|
id="navbar"
|
||||||
|
class="navbar primary-navbar popup-navbar justify-content-md-end"
|
||||||
|
>
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
class=`nav-link ${navNum == 1? "active-tab":""}`
|
||||||
|
href="/"
|
||||||
|
>Home</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
class=`nav-link ${navNum == 2? "active-tab":""}`
|
||||||
|
href="/products"
|
||||||
|
>Products</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
class=`nav-link ${navNum == 3? "active-tab":""}`
|
||||||
|
href="/data-services"
|
||||||
|
>Data Services</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
class=`nav-link ${navNum == 4? "active-tab":""}`
|
||||||
|
href="/resources/articles"
|
||||||
|
>Resources</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li
|
||||||
|
id="mobile-nav1"
|
||||||
|
class="nav-item dropdown d-block d-sm-block d-md-none konectar-item"
|
||||||
|
>
|
||||||
|
<a class=`nav-link menu-dropdown-products-link ${navNum == 5? "active-tab":""}` href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'" style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i
|
||||||
|
class="fa fa-caret-down menu-mobile-products dropdown-toggle"
|
||||||
|
id="navbarDropdown"
|
||||||
|
data-bs-toggle="dropdown"
|
||||||
|
aria-hidden="true"
|
||||||
|
aria-expanded="false">
|
||||||
|
</i>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
class=`nav-link ${navNum == 6? "active-tab":""}`
|
||||||
|
href="/support"
|
||||||
|
>Support</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
class=`nav-link ${navNum == 7? "active-tab":""}`
|
||||||
|
href="/about-us"
|
||||||
|
>About</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"
|
||||||
|
></i>
|
||||||
|
<span
|
||||||
|
class="mobile-menu-text d-none d-md-none"
|
||||||
|
>Menu</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<slot name="nav-slot" />
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="d-none d-sm-none d-md-block pe-md-2 pe-4"
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
href="/get-demo"
|
||||||
|
class="get-demo-btn gAnalytics_getADemoBtn"
|
||||||
|
>Request a Demo</a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function () {
|
||||||
|
window.onorientationchange = function () {
|
||||||
|
|
||||||
|
window.location.reload();
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- <script src="/assets/js/5.0/jquery.min.js" type="text/javascript"
|
||||||
|
data-astro-rerun></script> -->
|
||||||
|
|
||||||
|
<slot/>
|
||||||
|
|
||||||
|
<Footer/>
|
||||||
|
<Fragment set:html={tag_details.before_body}/>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,326 @@
|
||||||
|
---
|
||||||
|
import Footer from "../components/Footer.astro";
|
||||||
|
import { ViewTransitions } from 'astro:transitions';
|
||||||
|
const { title, navNum, konectar_logo } = Astro.props;
|
||||||
|
|
||||||
|
let page_url = Astro.url.pathname.replace(/\/$/, '');
|
||||||
|
if(page_url==''){
|
||||||
|
page_url = '/home';
|
||||||
|
}
|
||||||
|
page_url = page_url.replace(/\/(.*)/, (_, rest) => rest.replace(/\//g, '|'));
|
||||||
|
|
||||||
|
let tags = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/list-keywords/${page_url}`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
tags = res;
|
||||||
|
console.log(page_url);
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
let tag_details = null
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/tags-manager`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
tag_details = res;
|
||||||
|
// console.log(res);
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
---
|
||||||
|
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta
|
||||||
|
charset="utf-8"
|
||||||
|
name="viewport"
|
||||||
|
content="width=device-width, initial-scale=1.0"
|
||||||
|
/>
|
||||||
|
<title>{tags.title}</title>
|
||||||
|
<!-- <ViewTransitions/> -->
|
||||||
|
<!-- *** Meta Tags *** -->
|
||||||
|
<!-- <meta name="robots" content="noindex, nofollow"> -->
|
||||||
|
{tags.robots_index !== "" && tags.robots_follow !== "" ? (
|
||||||
|
<meta name="robots" content={`${tags.robots_index} , ${tags.robots_follow} `} />
|
||||||
|
) : (
|
||||||
|
<meta name="robots" content="noindex, nofollow" />
|
||||||
|
)}
|
||||||
|
|
||||||
|
<meta name="description" content={tags.description} />
|
||||||
|
<meta name="keywords" content=`${tags.keyword}` />
|
||||||
|
|
||||||
|
{tags.og_tags && Object.entries(tags.og_tags).map(([tag, value]) => (
|
||||||
|
|
||||||
|
<meta property=`${tag}` content=`${value}` />
|
||||||
|
))}
|
||||||
|
|
||||||
|
<link rel="canonical" href={tags.canonical} />
|
||||||
|
<!-- *** Favicons *** -->
|
||||||
|
<link
|
||||||
|
href="/assets/favicon.ico"
|
||||||
|
rel="icon"
|
||||||
|
/>
|
||||||
|
<!-- *** Provider CSS Files *** -->
|
||||||
|
<link
|
||||||
|
href="/assets/css/5.0/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
defer
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="/assets/css/bootstrap-icons.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<!-- *** Template Main CSS File *** -->
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
type="text/css"
|
||||||
|
href="/assets/css/style.css"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
type="text/css"
|
||||||
|
href="/assets/css/home.css"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
type="text/css"
|
||||||
|
href="/assets/css/fonts.css"
|
||||||
|
rel="preload"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
type="text/css"
|
||||||
|
href="/assets/css/responsive.css"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
type="text/css"
|
||||||
|
href="/assets/css/animate.css"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
type="text/css"
|
||||||
|
href="/assets/css/font-awesome/6.3.0/css/all.min.css"
|
||||||
|
/>
|
||||||
|
<!-- Swiper CSS file -->
|
||||||
|
|
||||||
|
<link
|
||||||
|
rel="preload"
|
||||||
|
fetchpriority="high"
|
||||||
|
as="image"
|
||||||
|
href="/assets/images/homepage/home_image.svg"
|
||||||
|
type="image/webp"
|
||||||
|
/>
|
||||||
|
<!-- Swiper JS file -->
|
||||||
|
|
||||||
|
<!-- *** Template Main Jquery File *** -->
|
||||||
|
<!-- <script src="/assets/js/5.0/jquery.min.js" defer></script> -->
|
||||||
|
<script src="/assets/js/5.0/jquery.min.js" type="text/javascript"
|
||||||
|
data-astro-rerun></script>
|
||||||
|
<!-- *** Vendor JS Files *** -->
|
||||||
|
<script
|
||||||
|
src="/assets/js/5.0/bootstrap.min.js"
|
||||||
|
crossorigin="anonymous" ></script>
|
||||||
|
<!-- *** Validation Script *** -->
|
||||||
|
<script
|
||||||
|
src="/assets/js/jquery.validate.js"
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
<!-- *** Extra Script *** -->
|
||||||
|
<!-- TODO below 3 also causing problem -->
|
||||||
|
<script
|
||||||
|
src="/assets/js/jquery.imageslider.js"
|
||||||
|
defer
|
||||||
|
data-astro-rerun ></script>
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
{tag_details.before_head && (
|
||||||
|
<Fragment set:html={tag_details.before_head}></Fragment>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<!-- <script set:html={tag_details.before_head}></script> -->
|
||||||
|
<body id="body">
|
||||||
|
<!-- <ViewTransitions /> -->
|
||||||
|
<!-- <div set:html={tag_details.initial_body_content}></div> -->
|
||||||
|
{tag_details.initial_body_content && (
|
||||||
|
<Fragment set:html={tag_details.initial_body_content}></Fragment>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Top Bar ∋∋∋ -->
|
||||||
|
<section id="topbar" class="d-flex align-items-center">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex align-items-center pe-4">
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966 8181</a> -->
|
||||||
|
<a
|
||||||
|
class="d-none d-sm-block"
|
||||||
|
href="/meet-us">Meet Us</a
|
||||||
|
>
|
||||||
|
<span class="d-none d-sm-block">|</span>
|
||||||
|
<a
|
||||||
|
class="d-none d-sm-block"
|
||||||
|
href="/work-with-us"
|
||||||
|
>Work with Us</a
|
||||||
|
>
|
||||||
|
<span class="d-none d-sm-block">|</span>
|
||||||
|
<a
|
||||||
|
class="d-none d-sm-block scrollto"
|
||||||
|
href="/about-us#contact-us"
|
||||||
|
>Contact Us</a
|
||||||
|
>
|
||||||
|
<span class="d-none d-sm-block">|</span>
|
||||||
|
<a
|
||||||
|
class="d-none d-sm-block"
|
||||||
|
href="/media-view">Media</a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<header id="header" class="align-items-center" >
|
||||||
|
<div
|
||||||
|
id="header-container"
|
||||||
|
class="container-fluid align-items-center justify-content-between"
|
||||||
|
>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-2 col-md-3 col-sm-4 col-6 logo-section">
|
||||||
|
<!-- image logo -->
|
||||||
|
<a href="/" class="logo"
|
||||||
|
><img
|
||||||
|
src=`${konectar_logo==1 ? '/assets/images/konectar/logo/aissel_konectar_logo.svg': '/assets/images/aissel_logo.png'}`
|
||||||
|
alt="aissel logo"
|
||||||
|
/></a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-10 col-md-9 col-sm-8 col-6 nav-section">
|
||||||
|
<div
|
||||||
|
class="navbar-section d-flex justify-content-end"
|
||||||
|
style="margin-top: 12px;"
|
||||||
|
>
|
||||||
|
<div class="col-lg-10 col-md-10">
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css"
|
||||||
|
/>
|
||||||
|
<nav
|
||||||
|
id="navbar"
|
||||||
|
class="navbar primary-navbar popup-navbar justify-content-md-end"
|
||||||
|
>
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
class=`nav-link ${navNum == 1? "active-tab":""}`
|
||||||
|
href="/"
|
||||||
|
>Home</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
class=`nav-link ${navNum == 2? "active-tab":""}`
|
||||||
|
href="/products"
|
||||||
|
>Products</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
class=`nav-link ${navNum == 3? "active-tab":""}`
|
||||||
|
href="/data-services"
|
||||||
|
>Data Services</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
class=`nav-link ${navNum == 4? "active-tab":""}`
|
||||||
|
href="/resources/articles"
|
||||||
|
>Resources</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li
|
||||||
|
id="mobile-nav1"
|
||||||
|
class="nav-item dropdown d-block d-sm-block d-md-none konectar-item"
|
||||||
|
>
|
||||||
|
<a class=`nav-link menu-dropdown-products-link ${navNum == 5? "active-tab":""}` href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'" style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i
|
||||||
|
class="fa fa-caret-down menu-mobile-products dropdown-toggle"
|
||||||
|
id="navbarDropdown"
|
||||||
|
data-bs-toggle="dropdown"
|
||||||
|
aria-hidden="true"
|
||||||
|
aria-expanded="false">
|
||||||
|
</i>
|
||||||
|
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
class=`nav-link ${navNum == 6? "active-tab":""}`
|
||||||
|
href="/support"
|
||||||
|
>Support</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
class=`nav-link ${navNum == 7? "active-tab":""}`
|
||||||
|
href="/about-us"
|
||||||
|
>About</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"
|
||||||
|
></i>
|
||||||
|
<span
|
||||||
|
class="mobile-menu-text d-none d-md-none"
|
||||||
|
>Menu</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<slot name="nav-slot" />
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="d-none d-sm-none d-md-block pe-md-2 pe-4"
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
href="/get-demo"
|
||||||
|
class="get-demo-btn gAnalytics_getADemoBtn"
|
||||||
|
>Request a Demo</a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function () {
|
||||||
|
window.onorientationchange = function () {
|
||||||
|
|
||||||
|
window.location.reload();
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- <script src="/assets/js/5.0/jquery.min.js" type="text/javascript"
|
||||||
|
data-astro-rerun></script> -->
|
||||||
|
|
||||||
|
<slot/>
|
||||||
|
|
||||||
|
<Footer/>
|
||||||
|
<Fragment set:html={tag_details.before_body}/>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,243 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="About Us | Know All About Aissel Technologies" navNum=7>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<div id="about-us">
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="company-profile">
|
||||||
|
<div class="container-fluid band-one p-lg-4 py-4 px-3" id="band-one">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 col-lg-4 col-md-6 col-sm-4 px-lg-5 px-sm-3">
|
||||||
|
<!--14 JULY 2023 -->
|
||||||
|
<h1 class="band-one-title">Our Company</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-12 px-lg-5 px-sm-3">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-8">
|
||||||
|
<p class="band-one-text text-justify">Aissel Technologies is a leading provider of enterprise SaaS application for Medical Opinion Leader Management. Aissel's end to end software solutions are designed to help life sciences companies accomplish their business objectives. Aissel has been supporting some of the top Pharma, Biotech, Medical Device, Diagnostics, Animal Health and Nutrition industry in helping them understand their HCP landscape better, hence building a strong and compliant relationship with HCPs.</p>
|
||||||
|
<p class="band-one-text text-justify">konectar KOL Management Suite is our AI powered cloud software, that enables customers to integrate, manage and monitor their KOL development and engagement initiatives. Built on the latest technologies including Machine Learning and Natural Language Processing, our data crawl and disambiguation capabilities are accurate and includes a vast breadth of data. konectar is deployed at global life sciences companies and is used in over 20 countries.</p>
|
||||||
|
<p class="band-one-tag-line text-justify">Hence we say, it is Business Intelligence… Ready!</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-2 col-md-6 col-6 text-center">
|
||||||
|
<div class="work-image">
|
||||||
|
<a href="/careers/apply">
|
||||||
|
<img src="/assets/images/about_us/work_thumbnail.png" width="157px" height="212px" alt="work-thumbnail" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-2 col-md-6 col-6 text-center">
|
||||||
|
<div class="meet-us-image">
|
||||||
|
<a href="/meet-us">
|
||||||
|
<img src="/assets/images/about_us/meetus_thumbnail_blue.jpg" width="157px" height="212px" alt="meetus-thumbnail" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 px-lg-5 px-sm-3">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-8 text-center d-flex flex-column align-items-center justify-content-center">
|
||||||
|
<p class="vision-title">Our Vision</p>
|
||||||
|
<p class="vision-description">Our vision is to build a world-class company that all our employees, customers, partners and the communities are proud to be a part of.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Two Section -->
|
||||||
|
<section id="company-values">
|
||||||
|
<div class="band-two p-lg-4">
|
||||||
|
<div id="band-two" class="container-fluid">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-10 col-md-10 col-11 py-4">
|
||||||
|
<!-- 04-04-2024 -->
|
||||||
|
<h2>Our Values</h2>
|
||||||
|
<p class="band-two-text pt-3">Values define character - who you are.</p>
|
||||||
|
<p class="band-two-text">Our 3 core values, is the beacon that guides us at all times, through all the thick and thin. We follow our values as our core philosophy. We uphold them equally without compromising one at the pretext of another. We drive them by prudence and rightful thinking without subjecting them to rationalization and interpretation. We will surely get where we want to, but in a way that we believe is right.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row justify-content-center content-block pb-4">
|
||||||
|
<div class="col-lg-10 col-md-10 col-sm-12 col-12 d-lg-flex d-md-flex">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/about_us/commitment.jpg" class="rounded-circle" alt="commitment" />
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3">Commitment</label>
|
||||||
|
<p class="band-content text-center px-4">We do everything possible and whatever it takes to keep our promises - to our employees, customers, partners and everyone we deal with.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/about_us/our_values2.jpg" class="rounded-circle" alt="Perseverance" />
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3">Perseverance</label>
|
||||||
|
<p class="band-content text-center px-4">We work very hard to deliver our promises. We are optimistic no matter how hard the situation is and we keep trying until we achieve what we want.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/about_us/our_values3.jpg" class="rounded-circle" alt="Trust" />
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3">Trust</label>
|
||||||
|
<p class="band-content text-center px-4">We trust each other, our customers and partners under all situations; earning their trust and keeping it is above everything else for us.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Three Section -->
|
||||||
|
<section id="community-initiatives">
|
||||||
|
<div id="band-three" class="container-fluid band-three">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-10 col-md-10 col-sm-10 col-10 px-0 pt-4">
|
||||||
|
<div class="col-lg-6 col-md-10">
|
||||||
|
<!-- 04-04-2024 -->
|
||||||
|
<h3>Our Community Initiatives</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-10 col-md-10 col-sm-10 col-10 px-0">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-9 col-md-9">
|
||||||
|
<p class="band-three-text">Our Approach towards Creating a Better Society</p>
|
||||||
|
<p class="band-three-description">Be The Change initiative is our effort to connect with the community that we operate in and contribute towards making this world a better place, in our own small way. We dedicate some of our profits and some of our employees' time for working towards improving our communities thus integrating social responsibility into our business.</p>
|
||||||
|
<p class="band-three-text">To participate in our programs, e-mail us at <a href="mailto:info@aissel.com" class="email_color">info@aissel.com</a></p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-3 text-center">
|
||||||
|
<!-- <a href="/article/category/csr/5" class="__web-inspector-hide-shortcut__"><img src="/assets/images/about_us/community_initiatives.png" class="" alt="Aissel CSR initiatives" /></a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-10 col-md-10 px-0 text-center pb-3">
|
||||||
|
<p class="tag-line">"If not you, then who. If not now, then when."</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Four Section --- JS SLIDER -->
|
||||||
|
<section id="aissel-images" style="height: 400px;overflow: hidden;">
|
||||||
|
<div id="band-four" class="container-fluid band-four">
|
||||||
|
<div class="row">
|
||||||
|
<div class="my-slider js-imageslider">
|
||||||
|
<ul class="my-slider-list">
|
||||||
|
<li class="my-slider-item"><img class="img-responsive" src="/assets/images/about_us/csr.jpg" width="" height="" alt="Slider Image 1" /></li>
|
||||||
|
<li class="my-slider-item"><img class="img-responsive" src="/assets/images/about_us/csr2.jpg" width="" height="" alt="Slider Image 2" /></li>
|
||||||
|
<li class="my-slider-item"><img class="img-responsive" src="/assets/images/about_us/csr.jpg" width="" height="" alt="Slider Image 3" /></li>
|
||||||
|
<li class="my-slider-item"><img class="img-responsive" src="/assets/images/about_us/csr2.jpg" width="" height="" alt="Slider Image 4" /></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Five Section -->
|
||||||
|
<section id="contact-us">
|
||||||
|
<div id="band-five" class="container-fluid band-five">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-10 col-md-10 pt-4">
|
||||||
|
<h3 class="text-center">Contact Us</h3>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-md-6 text-lg-center text-md-center d-flex flex-column">
|
||||||
|
<label class="contact-us-title py-3">Support</label>
|
||||||
|
<ul class="list-group list-group-flush list-unstyled">
|
||||||
|
<li class="list-group-item border-0"><img alt="Aissel Email" src="/assets/images/about_us/mail_small.png"/><a class="support_email_id" href="mailto:">support@aissel.com</a></li>
|
||||||
|
<!-- <li class="list-group-item border-0"><img alt="Aissel Phone" src="/assets/images/about_us/phone_small.png"/><a class="phone" href="tel:+13479668181,1" href="#" >+1 (347) 966-8181 X 1</a></li> -->
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-6 text-lg-center text-md-center d-flex flex-column">
|
||||||
|
<label class="contact-us-title py-3">Sales</label>
|
||||||
|
<ul class="list-group list-group-flush list-unstyled">
|
||||||
|
<li class="list-group-item border-0"><img alt="Aissel Email" src="/assets/images/about_us/mail_small.png" /><a class="support_email_id" href="mailto:">sales@aissel.com</a></li>
|
||||||
|
<!-- <li class="list-group-item border-0 ps-lg-4 ps-md-3"><img alt="Aissel Phone" src="/assets/images/about_us/phone_small.png" /><a class="phone" href="tel:+13479668181,2" >+1 (347) 966-8181 X 2</a></li> -->
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-10 col-md-10 pt-3 pb-4">
|
||||||
|
<p class="locations text-lg-center text-md-center">Locations</p>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-md-6 d-flex justify-content-lg-center justify-content-md-center ps-lg-5">
|
||||||
|
<ul class="list-group list-group-flush list-unstyled">
|
||||||
|
<li class="list-group-item border-0">
|
||||||
|
<div class="d-flex">
|
||||||
|
<div>
|
||||||
|
<img alt="Aissel Email" src="/assets/images/about_us/location_small.png" />
|
||||||
|
</div>
|
||||||
|
<div class="">
|
||||||
|
<p class="address">Aissel Technologies Private Limited.</p>
|
||||||
|
<p class="address">Office No. Lower Ground Floor-01,</p>
|
||||||
|
<p class="address">Next to International Airport, Gokul Road,</p>
|
||||||
|
<p class="address">Hubballi - 580030.</p>
|
||||||
|
<p class="address">India</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item border-0"><img alt="Aissel Phone" src="/assets/images/about_us/phone_small.png" /><a class="phone" href="tel:+918362351011" >+91 (836) 235 1011</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-6 d-flex justify-content-lg-center justify-content-md-center ps-lg-5">
|
||||||
|
<ul class="list-group list-group-flush list-unstyled">
|
||||||
|
<li class="list-group-item border-0">
|
||||||
|
<div class="d-flex">
|
||||||
|
<div>
|
||||||
|
<img alt="Aissel Email" src="/assets/images/about_us/location_small.png" />
|
||||||
|
</div>
|
||||||
|
<div class="">
|
||||||
|
<p class="address">Aissel Technologies, Inc.</p>
|
||||||
|
<p class="address">92 Montvale Ave, Suite 2500,</p>
|
||||||
|
<p class="address">Stoneham, MA 02180</p>
|
||||||
|
<p class="address">USA</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<!-- <li class="list-group-item border-0"><img alt="Aissel Phone" src="/assets/images/about_us/phone_small.png" /><a class="phone" href="tel:+918362351011" >+91 (836) 235 1011</a></li> -->
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<script src="/assets/js/jquery.imageslider.js" defer></script>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function() {
|
||||||
|
$('.js-imageslider').imageslider({
|
||||||
|
slideItems: '.my-slider-item',
|
||||||
|
slideContainer: '.my-slider-list',
|
||||||
|
slideDistance: 1,
|
||||||
|
slideDuratin: 30,
|
||||||
|
resizable: true
|
||||||
|
});
|
||||||
|
});
|
||||||
|
$('.js-imageslider').imageslider({
|
||||||
|
slideItems: '.my-slider-item',
|
||||||
|
slideContainer: '.my-slider-list',
|
||||||
|
slideDistance: 1,
|
||||||
|
slideDuratin: 30,
|
||||||
|
resizable: true
|
||||||
|
});
|
||||||
|
</script> </div>
|
||||||
|
|
||||||
|
</Layout>
|
|
@ -0,0 +1,271 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../../../layouts/Layout.astro";
|
||||||
|
const website_url = import.meta.env.PUBLIC_WEBSITE_URL;
|
||||||
|
|
||||||
|
|
||||||
|
export async function getStaticPaths() {
|
||||||
|
let categories = null;
|
||||||
|
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/article/get_categories`)
|
||||||
|
.then((response) => response.json())
|
||||||
|
.then((res) => {
|
||||||
|
categories = res.arrCategories;
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
});
|
||||||
|
|
||||||
|
return categories.map((category) => {
|
||||||
|
return {
|
||||||
|
params: {
|
||||||
|
categoryName: category.name.toLowerCase().replace(/ /g, '-'),
|
||||||
|
categoryId: category.id,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const { categoryName, categoryId } = Astro.params;
|
||||||
|
|
||||||
|
let data = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/resources/blogs/${categoryId}`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
data = res.arrArticles;
|
||||||
|
// console.log(data);
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
let recommendedBlogs = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/resources/recommended_blogs`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
recommendedBlogs = res.arrRecommendedArticles;
|
||||||
|
// console.log(recommendedBlogs);
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Healthcare Blogs | Aissel Blogs">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<style>
|
||||||
|
.article-title {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
margin-top: 0px;
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
.article-title a {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 29px;
|
||||||
|
text-decoration: none;
|
||||||
|
outline: 0 none;
|
||||||
|
}
|
||||||
|
.article-description {
|
||||||
|
color: #7f7f7f;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 22px;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
.user-profile-pic {
|
||||||
|
float: left;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
.published-by {
|
||||||
|
font-size: 14px;
|
||||||
|
margin-bottom: 3px;
|
||||||
|
}
|
||||||
|
.designation {
|
||||||
|
margin: 0px;
|
||||||
|
color: #a29e9e;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
.rounded-circle {
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
.category-title a {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div id="blog-view" class="content">
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="band-one">
|
||||||
|
<div class="container-fluid band-one">
|
||||||
|
<div class="row justify-content-center pt-4">
|
||||||
|
<div class="col-lg-6 col-md-7 col-sm-12 col-12 mx-lg-5 mx-md-3">
|
||||||
|
{data.map((post, index) => {
|
||||||
|
let slug = post.slug_url ? post.slug_url.split('/blog/')[1] : post.url_title;
|
||||||
|
let cat_url_name = post.cat_name.toLowerCase().replace(/ /g, '-');
|
||||||
|
return (
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 article-title">
|
||||||
|
<!--14 JULY 2023 -->
|
||||||
|
<h1>
|
||||||
|
<a href={`/blog/${slug}`}
|
||||||
|
>{post.title}</a>
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 mb-3">
|
||||||
|
<a
|
||||||
|
href={`/blog/${slug}`}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
class="img-responsive article_image w-100"
|
||||||
|
src=`https://www.aissel.com/public/assets/images/article_images/${post.image}`
|
||||||
|
alt={post.title}
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 d-flex align-items-center">
|
||||||
|
<div class="user-profile-pic">
|
||||||
|
<img
|
||||||
|
width="50"
|
||||||
|
height="50"
|
||||||
|
class="img-circle rounded-circle userInfo"
|
||||||
|
src=`https://www.aissel.com/public/assets/images/user_profile_images/${post.article_by_image}`
|
||||||
|
alt="Profile Pic"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="user-profile-details">
|
||||||
|
<p class="published-by">
|
||||||
|
{post.created_by}
|
||||||
|
</p>
|
||||||
|
<p class="designation">
|
||||||
|
{post.user_title}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="col-6 d-flex align-items-center justify-content-end category-title"
|
||||||
|
>
|
||||||
|
<!--14 JULY 2023 -->
|
||||||
|
<a
|
||||||
|
href=`/article/category/${cat_url_name}/${post.cat_id}`
|
||||||
|
>{post.cat_name}</a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 article-description mt-3">
|
||||||
|
{post.short_description} ... <a
|
||||||
|
href=`/blog/${slug}`
|
||||||
|
>Read this blog</a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
)})}
|
||||||
|
|
||||||
|
<!-- here ends blog -->
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-4 col-sm-4 mx-lg-5 mx-md-3 d-sm-block d-md-block d-lg-block">
|
||||||
|
<div class="row h-100 pe-sm-2">
|
||||||
|
<div class="p-0">
|
||||||
|
<div class="subscribe-block p-2">
|
||||||
|
<form id="createSubscription" action="#" method="post">
|
||||||
|
<div class="mb-3">
|
||||||
|
<div class="col-sm-12 col-md-12 col-12" >
|
||||||
|
<input class="form-control" type="email" id="email" name="email" placeholder="Enter email to receive our newsletter" aria-label="Enter your email" style="font-size:0.7rem;"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="justify-content-center">
|
||||||
|
<div class="col-sm-12 text-end">
|
||||||
|
<button type="button" class="btn orange-button" onclick="subscribe();" >Subscribe</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="recommend-container mt-3 p-2">
|
||||||
|
<h6 class="recommend-title">Recommended</h6>
|
||||||
|
{recommendedBlogs.map((recommendedBlog) => (
|
||||||
|
<div class="recommended-link p-1 mb-2">
|
||||||
|
<a href=`/blog/${recommendedBlog.url_title}` >
|
||||||
|
{recommendedBlog.title}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="promotion-box">
|
||||||
|
<div class="brought-to-by text-center border mt-4">
|
||||||
|
<label class="title py-3" for="">Brought to you by</label>
|
||||||
|
<!--14 JULY 2023 -->
|
||||||
|
<div class="pb-4">
|
||||||
|
<a href="https://www.aissel.com"><img src="/assets/images/aissel_logo.png" alt="Aissel logo"></a>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="py-3">
|
||||||
|
<a class="get-demo-btn" href="" role="button">Learn More</a>
|
||||||
|
</div> -->
|
||||||
|
</div>
|
||||||
|
<div class="medical-thought mt-3 p-1">
|
||||||
|
<div class="medical-thought-block text-center py-3 px-3">
|
||||||
|
<p class="px-3" for="thought-title">KOL Management for Life Sciences</p>
|
||||||
|
<div class="thought-image py-2">
|
||||||
|
<img src="/assets/images/discover_b.png" width="70%" alt="Discover Banner Image" />
|
||||||
|
</div>
|
||||||
|
<span> Identify, Profile, Engage</span>
|
||||||
|
<div class="py-2">
|
||||||
|
<a class="get-demo-btn" href="/get-demo" role="button">Request a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="website_url" data-key={website_url}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script is:inline>
|
||||||
|
const element = document.getElementById('website_url');
|
||||||
|
const url_key = element.dataset.key;
|
||||||
|
const subscribe_url = `${url_key}/article/subscribe_user`;
|
||||||
|
function subscribe(){
|
||||||
|
if(!$("#createSubscription").validate({
|
||||||
|
rules: {
|
||||||
|
email: {
|
||||||
|
required: true,
|
||||||
|
email: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
email: "Please enter a valid email address"
|
||||||
|
}
|
||||||
|
}).form()){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
var arrSubscribe = $("#createSubscription").serialize();
|
||||||
|
$.ajax({
|
||||||
|
url:subscribe_url,
|
||||||
|
type:"post",
|
||||||
|
dataType:"json",
|
||||||
|
data:arrSubscribe,
|
||||||
|
success: function (retData){
|
||||||
|
if(retData.status){
|
||||||
|
$("#createSubscription").hide();
|
||||||
|
$(".subscribe-block").html("<div><label class='text-white h5'>Thank you for subscribing us. We will send you email notifications about the updates.</label></div>");
|
||||||
|
}else{
|
||||||
|
$("#createSubscription").hide();
|
||||||
|
$(".subscribe-block").html("<div><label class='text-white h5'>Your email address is already subscribed</label></div>");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script> </div>
|
||||||
|
</div>
|
||||||
|
</<section>
|
||||||
|
</div> </div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,501 @@
|
||||||
|
---
|
||||||
|
import '../../styles/global.css';
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
import Comment from "../../components/Comment.jsx";
|
||||||
|
|
||||||
|
const website_url = import.meta.env.PUBLIC_WEBSITE_URL;
|
||||||
|
|
||||||
|
export async function getStaticPaths(){
|
||||||
|
|
||||||
|
|
||||||
|
let blogs = null;
|
||||||
|
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/resources/blogs/all`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
blogs = res.arrArticles;
|
||||||
|
// console.log(blogs);
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
// console.log(blogs);
|
||||||
|
return blogs.map((post) => {
|
||||||
|
|
||||||
|
if(post.slug_url!=null){
|
||||||
|
const slug = post.slug_url.split('/blog/')[1];
|
||||||
|
return {
|
||||||
|
params: {
|
||||||
|
slug: slug
|
||||||
|
},
|
||||||
|
props: post,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
params: {
|
||||||
|
slug: post.url_title
|
||||||
|
},
|
||||||
|
props: post,
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const post = Astro.props;
|
||||||
|
|
||||||
|
function formatDate(dateString) {
|
||||||
|
const date = new Date(dateString);
|
||||||
|
const day = String(date.getDate()).padStart(2, '0');
|
||||||
|
const month = String(date.getMonth() + 1).padStart(2, '0');
|
||||||
|
const year = date.getFullYear();
|
||||||
|
|
||||||
|
return `${day}-${month}-${year}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
// comments
|
||||||
|
let comments = null;
|
||||||
|
let slug = null;
|
||||||
|
if(post.slug_url!=null){
|
||||||
|
slug = post.slug_url.split('/blog/')[1];
|
||||||
|
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
|
||||||
|
slug = post.url_title;
|
||||||
|
}
|
||||||
|
// await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/blog/get-comment/${slug}`)
|
||||||
|
// .then(function(response){
|
||||||
|
// return response.json();
|
||||||
|
// })
|
||||||
|
// .then(function(res){
|
||||||
|
// comments = res;
|
||||||
|
// console.log(comments);
|
||||||
|
|
||||||
|
|
||||||
|
// }).catch((error) => {
|
||||||
|
// console.log(error);
|
||||||
|
|
||||||
|
// })
|
||||||
|
|
||||||
|
const formattedDate = formatDate(post.created_on);
|
||||||
|
|
||||||
|
// recommended blogs
|
||||||
|
let recommendedBlogs = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/resources/recommended_blogs`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
recommendedBlogs = res.arrRecommendedArticles;
|
||||||
|
// console.log(recommendedBlogs);
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
const postJs = post.js;
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title={post.title} navNum=4>
|
||||||
|
<div class="main-content-block">
|
||||||
|
<style>
|
||||||
|
#comment-details-block{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.article-description span {
|
||||||
|
/* color: #7f7f7f !important; */
|
||||||
|
font-size: 16px !important;
|
||||||
|
font-weight: 400 !important;
|
||||||
|
line-height: 22px !important;
|
||||||
|
text-align: justify !important;
|
||||||
|
font-family: asap, sans-serif !important;
|
||||||
|
}
|
||||||
|
.article-description a{
|
||||||
|
font-size: 14px !important;
|
||||||
|
}
|
||||||
|
.error {
|
||||||
|
color: red !important;
|
||||||
|
}
|
||||||
|
.promotion-box {
|
||||||
|
position: -webkit-sticky;
|
||||||
|
position: sticky !important;
|
||||||
|
top:70px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="blog-view" class="content">
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="band-one">
|
||||||
|
<div class="container-fluid band-one">
|
||||||
|
<div class="row justify-content-center pt-4 mb-5">
|
||||||
|
<div class="col-lg-6 col-md-7 col-sm-8 col-12 mx-lg-5 mx-md-3">
|
||||||
|
|
||||||
|
<div class="row justify-content-start">
|
||||||
|
<div class="col-lg-2 col-md-2 col-sm-2 col-2 pe-0">
|
||||||
|
<p class="article-date p-lg-2 px-2 py-1 text-center">{formattedDate}</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-10 col-md-10 col-sm-10 col-10">
|
||||||
|
<!--14 JULY 2023 -->
|
||||||
|
<h1 class="article-heading p-lg-2 p-2 mb-0">{post.title}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 pt-4 pb-lg-5 pb-md-3 pb-3">
|
||||||
|
<img class="w-100" src=`${import.meta.env.PUBLIC_WEBSITE_URL}/public/assets/images/article_images/${post.image}` alt={post.title} />
|
||||||
|
</div>
|
||||||
|
<div class="col-12 article-description">
|
||||||
|
<div set:html={post.description}></div>
|
||||||
|
</div>
|
||||||
|
<p></p>
|
||||||
|
<hr>
|
||||||
|
<div class="col-lg-12 col-md-12 col-12 user-details">
|
||||||
|
<div class="row ">
|
||||||
|
<div class="col-lg-2 col-md-2 col-3 text-center">
|
||||||
|
<label class="posted-by text-center me-0">Author:</label>
|
||||||
|
<img class="img-circle rounded-circle userInfo" src=`${import.meta.env.PUBLIC_WEBSITE_URL}/public/assets/images/user_profile_images/${post.article_by_image}` width="40px" height="40px" alt="profile-picture" />
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 col-md-7 col-9 d-flex flex-column align-items-start ">
|
||||||
|
<label class="published-by">{post.created_by} | <span class="published-on">{formattedDate}</span></label>
|
||||||
|
<label class="designation">{post.user_title}</label>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-3 col-12">
|
||||||
|
<div class="share-post text-center">
|
||||||
|
<!-- <label class="post-count" for="">Comments: {comments.commentsCount}</label> -->
|
||||||
|
<!-- <label class="post-count" for="">Comments: 00</label> -->
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<img alt="Aissel Facebook" src = "/assets/images/article_images/fb-share.png" id = "share_button" onmouseover="hoverfb(this);" onmouseout="unhoverfb(this);">
|
||||||
|
<a class="customer share" href="https://www.linkedin.com/cws/share?url=https://www.aissel.com/blog/advancements-in-professional-healthcare-services"><img alt="Aissel LinkedIn" src = "/assets/images/article_images/linkedin-share.png" onmouseover="hoverli(this);" onmouseout="unhoverli(this);"></a>
|
||||||
|
<a data-track="share_twitter" href="https://twitter.com/intent/tweet?text=Aissel Technologies&url=https://www.aissel.com/blog/advancements-in-professional-healthcare-services" ><img alt="Aissel Twitter" src = "/assets/images/article_images/tweet-share.png" onmouseover="hovertw(this);" onmouseout="unhovertw(this);" ></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-md-12 comment-section pt-3">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<label class="comment-title" for="comments">{comments.commentsCount} Comments</label>
|
||||||
|
<hr>
|
||||||
|
<div class="comments" set:html={comments.commentsHtml}></div>
|
||||||
|
</div> -->
|
||||||
|
<Comment slug={slug} client:load/>
|
||||||
|
|
||||||
|
<div class="accordion-heading">
|
||||||
|
<div class="comment-form">
|
||||||
|
<form class="custom-form form-horizontal" role="form" id="commentForm" action="" method="post">
|
||||||
|
<input type="hidden" name="article_id" value={post.id}></input>
|
||||||
|
<input type="hidden" name="comment_id" id="comment_id" value=""></input>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label for="post-comments" class="col-md-3 col-sm-4 col-4 col-form-label d-flex justify-content-end fw-bold">Comment<span class="mandatory">*</span>:</label>
|
||||||
|
<div class="col-md-9 col-sm-8 col-8">
|
||||||
|
<div class="form-floating">
|
||||||
|
<textarea class="form-control p-0" placeholder="Leave a comment here" aria-label="Leave a comment here" id="comment" name="comment"></textarea>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="comment-details-block" class="">
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label for="name" class="col-sm-4 col-4 col-form-label d-flex justify-content-end fw-bold">Name<span class="mandatory">*</span>:</label>
|
||||||
|
<div class="col-sm-8 col-8">
|
||||||
|
<input class="form-control" type="text" name="name" id="name" placeholder="Enter your full name" aria-label="Enter your full name" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label for="inputEmail" class="col-sm-4 col-4 col-form-label d-flex justify-content-end fw-bold">Email<span class="mandatory">*</span>:</label>
|
||||||
|
<div class="col-sm-8 col-8">
|
||||||
|
<input class="form-control" type="email" name="email" id="email" placeholder="Enter your email" aria-label="Enter your email" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label for="company" class="col-sm-4 col-4 col-form-label d-flex justify-content-end fw-bold">Company:</label>
|
||||||
|
<div class="col-sm-8 col-8">
|
||||||
|
<input class="form-control" type="text" name="company" id="company" placeholder="Enter company name" aria-label="Enter company name" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mb-3 row justify-content-center">
|
||||||
|
<div class="col-md-9 col-sm-6 col-9 text-center text-md-end">
|
||||||
|
<a class="btn orange-button" onclick="save_comment();" role="button">Add Comment</a>
|
||||||
|
<a id="reset" class="btn orange-button closeShow" role="button">Cancel</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-4 col-sm-4 mx-lg-5 mx-md-3 d-sm-block d-md-block d-lg-block">
|
||||||
|
<div class="row h-100 pe-sm-2">
|
||||||
|
<div class="p-0">
|
||||||
|
<div class="subscribe-block p-2">
|
||||||
|
<form id="createSubscription" action="#" method="post">
|
||||||
|
<div class="mb-3">
|
||||||
|
<div class="col-sm-12 col-md-12 col-12" >
|
||||||
|
<input class="form-control" type="email" id="email" name="email" placeholder="Enter email to receive our newsletter" aria-label="Enter your email" style="font-size:0.7rem;"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="justify-content-center">
|
||||||
|
<div class="col-sm-12 text-end">
|
||||||
|
<button type="button" class="btn orange-button" onclick="subscribe();" >Subscribe</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="recommend-container mt-3 p-2">
|
||||||
|
<h6 class="recommend-title">Recommended</h6>
|
||||||
|
{recommendedBlogs.map((post) => {
|
||||||
|
let slug = post.slug_url ? post.slug_url.split('/blog/')[1] : post.url_title;
|
||||||
|
return (<div class="recommended-link p-1 mb-2">
|
||||||
|
<a href=`/blog/${slug}` >
|
||||||
|
{post.title}
|
||||||
|
</a>
|
||||||
|
</div>);
|
||||||
|
})}
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="promotion-box">
|
||||||
|
<div class="brought-to-by text-center border mt-4">
|
||||||
|
<label class="title py-3" for="">Brought to you by</label>
|
||||||
|
<!--14 JULY 2023 -->
|
||||||
|
<div class="pb-4">
|
||||||
|
<a href="/"><img src="/assets/images/aissel_logo.png" alt="Aissel logo"></a>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="py-3">
|
||||||
|
<a class="get-demo-btn" href="" role="button">Learn More</a>
|
||||||
|
</div> -->
|
||||||
|
</div>
|
||||||
|
<div class="medical-thought mt-3 p-1">
|
||||||
|
<div class="medical-thought-block text-center py-3 px-3">
|
||||||
|
<p class="px-3" for="thought-title">KOL Management for Life Sciences</p>
|
||||||
|
<div class="thought-image py-2">
|
||||||
|
<img src="/assets/images/discover_b.png" width="70%" alt="Discover Banner Image" />
|
||||||
|
</div>
|
||||||
|
<span> Identify, Profile, Engage</span>
|
||||||
|
<div class="py-2">
|
||||||
|
<a class="get-demo-btn" href="/get-demo" role="button">Request a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="website_url" data-key={website_url}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script is:inline>
|
||||||
|
const element = document.getElementById('website_url');
|
||||||
|
const url_key = element.dataset.key;
|
||||||
|
const subscribe_url = `${url_key}/article/subscribe_user`;
|
||||||
|
|
||||||
|
|
||||||
|
function subscribe(){
|
||||||
|
if(!$("#createSubscription").validate({
|
||||||
|
rules: {
|
||||||
|
email: {
|
||||||
|
required: true,
|
||||||
|
email: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
email: "Please enter a valid email address"
|
||||||
|
}
|
||||||
|
}).form()){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
var arrSubscribe = $("#createSubscription").serialize();
|
||||||
|
$.ajax({
|
||||||
|
url:subscribe_url,
|
||||||
|
type:"post",
|
||||||
|
dataType:"json",
|
||||||
|
data:arrSubscribe,
|
||||||
|
success: function (retData){
|
||||||
|
if(retData.status){
|
||||||
|
$("#createSubscription").hide();
|
||||||
|
$(".subscribe-block").html("<div><label class='text-white h5'>Thank you for subscribing us. We will send you email notifications about the updates.</label></div>");
|
||||||
|
}else{
|
||||||
|
$("#createSubscription").hide();
|
||||||
|
$(".subscribe-block").html("<div><label class='text-white h5'>Your email address is already subscribed</label></div>");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script> </div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<Fragment set:html={postJs}></Fragment>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
//Comment section validatiion
|
||||||
|
$("#comment").focusin(function() {
|
||||||
|
$("#comment-details-block").show();
|
||||||
|
});
|
||||||
|
$("#reset").click(function(e) {
|
||||||
|
$("#comment-details-block").hide();
|
||||||
|
$("#comment-error").hide();
|
||||||
|
document.getElementById("commentForm").reset();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script is:inline>
|
||||||
|
const element2 = document.getElementById('website_url');
|
||||||
|
const url_key2 = element2.dataset.key;
|
||||||
|
const comment_save_url = `${url_key2}/article/save_comment/comment`;
|
||||||
|
$(document).ready(function (){
|
||||||
|
$("#replyContainer").hide();
|
||||||
|
});
|
||||||
|
function hoverfb(element) {
|
||||||
|
element.setAttribute('src', '/assets/images/article_images/fb_blue_share.png');
|
||||||
|
}
|
||||||
|
function unhoverfb(element) {
|
||||||
|
element.setAttribute('src', '/assets/images/article_images/fb-share.png');
|
||||||
|
}
|
||||||
|
function hovertw(element) {
|
||||||
|
element.setAttribute('src', '/assets/images/article_images/tweet_blue_share.png');
|
||||||
|
}
|
||||||
|
function unhovertw(element) {
|
||||||
|
element.setAttribute('src', '/assets/images/article_images/tweet-share.png');
|
||||||
|
}
|
||||||
|
function hoverli(element) {
|
||||||
|
element.setAttribute('src', '/assets/images/article_images/linkedin_blue_share.png');
|
||||||
|
}
|
||||||
|
function unhoverli(element) {
|
||||||
|
element.setAttribute('src', '/assets/images/article_images/linkedin-share.png');
|
||||||
|
}
|
||||||
|
function save_comment(){
|
||||||
|
if(!$("#commentForm").validate({
|
||||||
|
rules: {
|
||||||
|
name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 3,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
comment: {
|
||||||
|
required: true,
|
||||||
|
minlength: 3,
|
||||||
|
maxlength: 500
|
||||||
|
},
|
||||||
|
email: {
|
||||||
|
required: true,
|
||||||
|
email: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
name: {
|
||||||
|
required: "Please enter your name",
|
||||||
|
minlength: "Your name must consist of at least 3 characters",
|
||||||
|
maxlength: "Your name should not exceed 250 characters"
|
||||||
|
},
|
||||||
|
comment: {
|
||||||
|
required: "Please enter your comments",
|
||||||
|
minlength: "Your comment must consist of at least 3 characters",
|
||||||
|
maxlength: "Your comment should not exceed 500 characters"
|
||||||
|
},
|
||||||
|
email: "Please enter a valid email address"
|
||||||
|
}
|
||||||
|
}).form()){
|
||||||
|
return false;
|
||||||
|
}else{
|
||||||
|
var arrCommentData = $("#commentForm").serialize();
|
||||||
|
$.ajax({
|
||||||
|
url:comment_save_url,
|
||||||
|
data:arrCommentData,
|
||||||
|
dataType:"json",
|
||||||
|
type:"post",
|
||||||
|
beforeSend: function() {
|
||||||
|
//alert('hi');
|
||||||
|
$('.md-overlay').css('visibility','visible');
|
||||||
|
},
|
||||||
|
success: function (retData){
|
||||||
|
if(retData.status){
|
||||||
|
$('.md-overlay').css('visibility','hidden');
|
||||||
|
$("#commentForm")[0].reset();
|
||||||
|
$('.accordion-heading').prepend('<div class="alert alert-success"><strong>Success!</strong> Your comment is awaiting moderation.</div>')
|
||||||
|
setTimeout(function(){
|
||||||
|
$('.alert-success').hide();
|
||||||
|
}, 1000);
|
||||||
|
}else{
|
||||||
|
location.reload();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<div id="fb-root"></div>
|
||||||
|
<script>
|
||||||
|
window.fbAsyncInit = function() {
|
||||||
|
FB.init({appId: '1128050843932134', status: true, cookie: true,
|
||||||
|
xfbml: true});
|
||||||
|
};
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var e = document.createElement('script'); e.async = true;
|
||||||
|
e.src = document.location.protocol +
|
||||||
|
'//connect.facebook.net/en_US/all.js';
|
||||||
|
document.getElementById('fb-root').appendChild(e);
|
||||||
|
}());
|
||||||
|
|
||||||
|
$(document).ready(function(){
|
||||||
|
$('#share_button').click(function(e){
|
||||||
|
e.preventDefault();
|
||||||
|
FB.ui(
|
||||||
|
{
|
||||||
|
mobile_iframe: true,
|
||||||
|
method: 'share',
|
||||||
|
href : 'https://www.aissel.com',
|
||||||
|
name: 'Advancements in Professional Healthcare Services ',
|
||||||
|
link: 'https://www.aissel.com/blog/advancements-in-professional-healthcare-services',
|
||||||
|
picture: 'https://www.aissel.com/images/article_images/1727083952_4b4b1a148d1ca252e94e.png',
|
||||||
|
caption: 'Advancements in Professional Healthcare Services ',
|
||||||
|
description: 'We are always a part of history in the making without even realizing it. This has never been more true than for the times we live in now. Since the development of AI and machine learning, they have already broken the set molds limited by human constraints. We are on the verge of a technical revolution in professional healthcare services.',
|
||||||
|
message: ""
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
!function(d,s,id){var
|
||||||
|
js,fjs=d.getElementsByTagName(s)
|
||||||
|
[0];if(!d.getElementById(id)){js=d.
|
||||||
|
createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.
|
||||||
|
parentNode.insertBefore(js,fjs);}}
|
||||||
|
(document,"script","twitter-wjs");
|
||||||
|
|
||||||
|
(function($){
|
||||||
|
/**
|
||||||
|
* jQuery function to prevent default anchor event and take the href * and the title to make a share pupup
|
||||||
|
*
|
||||||
|
* @param {[object]} e [Mouse event]
|
||||||
|
* @param {[integer]} intWidth [Popup width defalut 500]
|
||||||
|
* @param {[integer]} intHeight [Popup height defalut 400]
|
||||||
|
* @param {[boolean]} blnResize [Is popup resizeabel default true]
|
||||||
|
*/
|
||||||
|
$.fn.customerPopup = function (e, intWidth, intHeight, blnResize) {
|
||||||
|
|
||||||
|
// Prevent default anchor event
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
// Set values for window
|
||||||
|
intWidth = intWidth || '500';
|
||||||
|
intHeight = intHeight || '400';
|
||||||
|
strResize = (blnResize ? 'yes' : 'no');
|
||||||
|
|
||||||
|
// Set title and open popup with focus on it
|
||||||
|
var strTitle = ((typeof this.attr('title') !== 'undefined') ? this.attr('title') : 'Social Share'),
|
||||||
|
strParam = 'width=' + intWidth + ',height=' + intHeight + ',resizable=' + strResize,
|
||||||
|
objWindow = window.open(this.attr('href'), strTitle, strParam).focus();
|
||||||
|
}
|
||||||
|
}(jQuery));
|
||||||
|
</script> </div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,251 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
const website_url = import.meta.env.PUBLIC_WEBSITE_URL;
|
||||||
|
|
||||||
|
|
||||||
|
let data = null;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/resources/blogs/all`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
data = res.arrArticles;
|
||||||
|
// console.log(data);
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
let recommendedBlogs = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/resources/recommended_blogs`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
recommendedBlogs = res.arrRecommendedArticles;
|
||||||
|
// console.log(recommendedBlogs);
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Healthcare Blogs | Aissel Blogs">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<style>
|
||||||
|
.article-title {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
margin-top: 0px;
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
.article-title a {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 29px;
|
||||||
|
text-decoration: none;
|
||||||
|
outline: 0 none;
|
||||||
|
}
|
||||||
|
.article-description {
|
||||||
|
color: #7f7f7f;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 22px;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
.user-profile-pic {
|
||||||
|
float: left;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
.published-by {
|
||||||
|
font-size: 14px;
|
||||||
|
margin-bottom: 3px;
|
||||||
|
}
|
||||||
|
.designation {
|
||||||
|
margin: 0px;
|
||||||
|
color: #a29e9e;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
.rounded-circle {
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
.category-title a {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div id="blog-view" class="content">
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="band-one">
|
||||||
|
<div class="container-fluid band-one">
|
||||||
|
<div class="row justify-content-center pt-4">
|
||||||
|
<div class="col-lg-6 col-md-7 col-sm-12 col-12 mx-lg-5 mx-md-3">
|
||||||
|
{data.map((post, index) => {
|
||||||
|
let slug = post.slug_url ? post.slug_url.split('/blog/')[1] : post.url_title;
|
||||||
|
let cat_url_name = post.cat_name.toLowerCase().replace(/ /g, '-');
|
||||||
|
return (
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 article-title">
|
||||||
|
<!--14 JULY 2023 -->
|
||||||
|
<h1>
|
||||||
|
<a href={`/blog/${slug}`}
|
||||||
|
>{post.title}</a>
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 mb-3">
|
||||||
|
<a
|
||||||
|
href={`/blog/${slug}`}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
class="img-responsive article_image w-100"
|
||||||
|
src=`https://www.aissel.com/public/assets/images/article_images/${post.image}`
|
||||||
|
alt={post.title}
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 d-flex align-items-center">
|
||||||
|
<div class="user-profile-pic">
|
||||||
|
<img
|
||||||
|
width="50"
|
||||||
|
height="50"
|
||||||
|
class="img-circle rounded-circle userInfo"
|
||||||
|
src=`https://www.aissel.com/public/assets/images/user_profile_images/${post.article_by_image}`
|
||||||
|
alt="Profile Pic"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="user-profile-details">
|
||||||
|
<p class="published-by">
|
||||||
|
{post.created_by}
|
||||||
|
</p>
|
||||||
|
<p class="designation">
|
||||||
|
{post.user_title}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="col-6 d-flex align-items-center justify-content-end category-title"
|
||||||
|
>
|
||||||
|
<!--14 JULY 2023 -->
|
||||||
|
<a
|
||||||
|
href=`/article/category/${cat_url_name}/${post.cat_id}`
|
||||||
|
>{post.cat_name}</a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 article-description mt-3">
|
||||||
|
{post.short_description} ... <a
|
||||||
|
href=`/blog/${slug}`
|
||||||
|
>Read this blog</a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
)})}
|
||||||
|
|
||||||
|
<!-- here ends blog -->
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-4 col-sm-4 mx-lg-5 mx-md-3 d-sm-block d-md-block d-lg-block">
|
||||||
|
<div class="row h-100 pe-sm-2">
|
||||||
|
<div class="p-0">
|
||||||
|
<div class="subscribe-block p-2">
|
||||||
|
<form id="createSubscription" action="#" method="post">
|
||||||
|
<div class="mb-3">
|
||||||
|
<div class="col-sm-12 col-md-12 col-12" >
|
||||||
|
<input class="form-control" type="email" id="email" name="email" placeholder="Enter email to receive our newsletter" aria-label="Enter your email" style="font-size:0.7rem;"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="justify-content-center">
|
||||||
|
<div class="col-sm-12 text-end">
|
||||||
|
<button type="button" class="btn orange-button" onclick="subscribe();" >Subscribe</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="recommend-container mt-3 p-2">
|
||||||
|
<h6 class="recommend-title">Recommended</h6>
|
||||||
|
{recommendedBlogs.map((recommendedBlog) => (
|
||||||
|
<div class="recommended-link p-1 mb-2">
|
||||||
|
<a href=`/blog/${recommendedBlog.url_title}` >
|
||||||
|
{recommendedBlog.title}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="promotion-box">
|
||||||
|
<div class="brought-to-by text-center border mt-4">
|
||||||
|
<label class="title py-3" for="">Brought to you by</label>
|
||||||
|
<!--14 JULY 2023 -->
|
||||||
|
<div class="pb-4">
|
||||||
|
<a href="https://www.aissel.com"><img src="/assets/images/aissel_logo.png" alt="Aissel logo"></a>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="py-3">
|
||||||
|
<a class="get-demo-btn" href="" role="button">Learn More</a>
|
||||||
|
</div> -->
|
||||||
|
</div>
|
||||||
|
<div class="medical-thought mt-3 p-1">
|
||||||
|
<div class="medical-thought-block text-center py-3 px-3">
|
||||||
|
<p class="px-3" for="thought-title">KOL Management for Life Sciences</p>
|
||||||
|
<div class="thought-image py-2">
|
||||||
|
<img src="/assets/images/discover_b.png" width="70%" alt="Discover Banner Image" />
|
||||||
|
</div>
|
||||||
|
<span> Identify, Profile, Engage</span>
|
||||||
|
<div class="py-2">
|
||||||
|
<a class="get-demo-btn" href="/get-demo" role="button">Request a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="website_url" data-key={website_url}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script is:inline>
|
||||||
|
const element = document.getElementById('website_url');
|
||||||
|
const url_key = element.dataset.key;
|
||||||
|
const subscribe_url = `${url_key}/article/subscribe_user`;
|
||||||
|
function subscribe(){
|
||||||
|
if(!$("#createSubscription").validate({
|
||||||
|
rules: {
|
||||||
|
email: {
|
||||||
|
required: true,
|
||||||
|
email: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
email: "Please enter a valid email address"
|
||||||
|
}
|
||||||
|
}).form()){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
var arrSubscribe = $("#createSubscription").serialize();
|
||||||
|
$.ajax({
|
||||||
|
url:subscribe_url,
|
||||||
|
type:"post",
|
||||||
|
dataType:"json",
|
||||||
|
data:arrSubscribe,
|
||||||
|
success: function (retData){
|
||||||
|
if(retData.status){
|
||||||
|
$("#createSubscription").hide();
|
||||||
|
$(".subscribe-block").html("<div><label class='text-white h5'>Thank you for subscribing us. We will send you email notifications about the updates.</label></div>");
|
||||||
|
}else{
|
||||||
|
$("#createSubscription").hide();
|
||||||
|
$(".subscribe-block").html("<div><label class='text-white h5'>Your email address is already subscribed</label></div>");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script> </div>
|
||||||
|
</div>
|
||||||
|
</<section>
|
||||||
|
</div> </div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,286 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
const website_url = import.meta.env.PUBLIC_WEBSITE_URL;
|
||||||
|
|
||||||
|
let data = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/careers/apply`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
data = res.job_position;
|
||||||
|
// console.log(data);
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Careers Apply | Aissel Technologies">
|
||||||
|
<div class="main-content-block">
|
||||||
|
<div id="work-with-us" class="content">
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="band-one">
|
||||||
|
<div class="container-fluid band-one d-none d-sm-none d-lg-block d-md-block">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-md-8 mx-lg-5 px-lg-5 py-lg-3">
|
||||||
|
<h1 class="band-one-title">Work with Us</h1>
|
||||||
|
<p class="band-one-description">Thank you for your interest to work with us. Please help us understand your strengths a little better by furnishing your key skills and experience. We encourage you to go through our website to understand what we do.</p>
|
||||||
|
<p class="band-one-description">Well... like everybody else, we too look for necessary education, experience, willingness to learn, perseverance etc. But what's more important for us is the right attitude, passion, creativity & the enthusiasm to build a good company along with us. Go ahead and tell us why you want to work with us and we would love to have a chat with you!</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Two Section -->
|
||||||
|
<section id="band-two">
|
||||||
|
<div class="container-fluid band-two">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="work-with-us-message" id="message"></div>
|
||||||
|
<div class="col-lg-5 col-md-12 col-sm-12 col-12 mt-4 form" id="form">
|
||||||
|
<form id="career" class="form-horizontal career" method="post" action="" role="form" data-toggle="validator" enctype="multipart/form-data">
|
||||||
|
<input type="hidden" name="csrf_test_name" value="423043230087270d568d43dec1da8530" /> <div class="mb-3 row">
|
||||||
|
<label class="col-sm-4 col-4 col-form-label d-flex justify-content-end">Full Name<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-sm-8 col-8">
|
||||||
|
<input type="text" id="full_name" name="full_name" class="form-control required" placeholder="Enter your full name" >
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label class="col-sm-4 col-4 col-form-label d-flex justify-content-end">Education<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-sm-8 col-8">
|
||||||
|
<input type="text" id="education" name="education" class="form-control required" placeholder="Enter your education" >
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label class="col-sm-4 col-4 col-form-label d-flex justify-content-end">Experience</label>
|
||||||
|
<div class="col-sm-8 col-8">
|
||||||
|
<input type="text" id="experience" name="experience" class="form-control" placeholder="Add your work experience">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label class="col-sm-4 col-4 col-form-label d-flex justify-content-end">Key skills<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-sm-8 col-8">
|
||||||
|
<input type="text" id="key_skills" name="key_skills" class="form-control required" placeholder="Enter your key skills" >
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row ">
|
||||||
|
<label class="col-sm-4 col-4 col-form-label d-flex justify-content-end">Previous Employer(s)</label>
|
||||||
|
<div class="col-sm-8 col-8">
|
||||||
|
<input type="text" id="previous_employer" name="previous_employer" class="form-control" placeholder="Enter previous employer details">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row ">
|
||||||
|
<label class="col-sm-4 col-4 col-form-label d-flex justify-content-end">Position applying for</label>
|
||||||
|
<div class="col-sm-8 col-8">
|
||||||
|
<select type="text" id="postion_applying_for" name="postion_applying_for" class="form-control" >
|
||||||
|
<option value="">---Select---</option>
|
||||||
|
{
|
||||||
|
data.map((pos) => (
|
||||||
|
<option value={pos.id}>{pos.name}</option>
|
||||||
|
))
|
||||||
|
}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label class="col-sm-4 col-4 col-form-label d-flex justify-content-end">Phone<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-sm-8 col-4">
|
||||||
|
<input type="number" pattern="\d{3}[\-]\d{3}[\-]\d{4}" required id="phone" name="phone" class="form-control required" placeholder="Enter your mobile number">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label class="col-sm-4 col-4 col-form-label d-flex justify-content-end">Email<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-sm-8 col-8">
|
||||||
|
<input type="email" id="email" name="email" class="form-control required" placeholder="Enter your email-id" >
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label class="col-sm-4 col-4 col-form-label d-flex justify-content-end">Cover Letter</label>
|
||||||
|
<div class="col-sm-8 col-8">
|
||||||
|
<div class="form-floating">
|
||||||
|
<textarea id="cover_letter" rows="3" cols="50" name="cover_letter" class="form-control"></textarea>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label for="formFile" class="col-sm-4 col-4 col-form-label d-flex justify-content-end">Resume<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-sm-8 col-8">
|
||||||
|
<div class="">
|
||||||
|
<input type="file" id="resume" name="resume" class="form-control required" value="" placeholder="Attach your resume" accept=".pdf, .doc, .docx, .docs">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row justify-content-center">
|
||||||
|
<div class="col-sm-6 text-center">
|
||||||
|
<button type="button" name="submit" id="submit-button" value="Submit" class="btn get-demo-btn">Submit</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div id="website_url" data-key={website_url}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script is:inline>
|
||||||
|
const element = document.getElementById('website_url');
|
||||||
|
const url_key = element.dataset.key;
|
||||||
|
const career_mail_url = `${url_key}/careers/send_career_mail`;
|
||||||
|
|
||||||
|
$("#career").validate({
|
||||||
|
rules: {
|
||||||
|
full_name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 2,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
education: {
|
||||||
|
required: true,
|
||||||
|
minlength: 2,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
key_skills: {
|
||||||
|
required: true,
|
||||||
|
minlength: 3,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
phone: {
|
||||||
|
required: true,
|
||||||
|
minlength: 5,
|
||||||
|
maxlength: 20
|
||||||
|
},
|
||||||
|
resume: {
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
email: {
|
||||||
|
required: true,
|
||||||
|
email: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
full_name: {
|
||||||
|
required: "Please enter your name",
|
||||||
|
minlength: "Your name must consist of at least 2 characters",
|
||||||
|
maxlength: "Your name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
education: {
|
||||||
|
required: "Please enter your education details",
|
||||||
|
minlength: "Your education must consist of at least 2 characters",
|
||||||
|
maxlength: "Your education must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
key_skills: {
|
||||||
|
required: "Please enter your key skills",
|
||||||
|
minlength: "Your key skills must consist of at least 3 characters",
|
||||||
|
maxlength: "Your key skills must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
phone: {
|
||||||
|
required: "Please enter your phone number",
|
||||||
|
minlength: "Your phone number must consist of at least 5 characters",
|
||||||
|
maxlength: "Your phone number must consist of maximum 20 characters"
|
||||||
|
},
|
||||||
|
resume: {
|
||||||
|
required: "Please upload your resume"
|
||||||
|
},
|
||||||
|
email: "Please enter a valid email address"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#submit-button').click(function(){
|
||||||
|
var validator = $("#career").validate();
|
||||||
|
if(!validator.form()){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
// Get the selected file
|
||||||
|
var files = $('#resume')[0].files;
|
||||||
|
// console.log(files);
|
||||||
|
|
||||||
|
if(files.length > 0){
|
||||||
|
|
||||||
|
var form_data = new FormData($('form')[0]);
|
||||||
|
|
||||||
|
// Append data
|
||||||
|
form_data.append('resume',files[0]);
|
||||||
|
// console.log(form_data);
|
||||||
|
$.ajax({
|
||||||
|
type:'post',
|
||||||
|
url: career_mail_url,
|
||||||
|
data: form_data,
|
||||||
|
dataType:'json',
|
||||||
|
processData: false,
|
||||||
|
contentType: false,
|
||||||
|
beforeSend: function(){
|
||||||
|
$('#submit-button').text("Processing...");
|
||||||
|
$('#submit-button').attr('disabled', true);
|
||||||
|
},
|
||||||
|
success:function(returnData){
|
||||||
|
// console.log(returnData);
|
||||||
|
$('.form').hide();
|
||||||
|
$('.career').hide();
|
||||||
|
if(returnData.status == true){
|
||||||
|
$('#message').show();
|
||||||
|
$("html, body").animate({ scrollTop: 0 }, 600);
|
||||||
|
$('#message').html('<p class="" style="font-size: 24px; text-align: center;">Thank you for applying to Aissel Technologies. </p><p class="get-demo-subtitle" style="font-size: 16px;text-align: center;">We will keep you informed if your profile is shortlisted.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>');
|
||||||
|
}else{
|
||||||
|
$('#message').show();
|
||||||
|
$('#message').html('<p class="" style="font-size:16px; text-align: center;">Sorry, Something wrong in sending email, Please try submit once again.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
alert("Please select a file.");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// function submit_form(){
|
||||||
|
// var validator = $("#career").validate();
|
||||||
|
// if(!validator.form()){
|
||||||
|
// return false;
|
||||||
|
// }
|
||||||
|
// else{
|
||||||
|
// var form_data = $('#career').serialize();
|
||||||
|
// console.log(form_data);
|
||||||
|
// var file_data = $('#resume').prop('files')[0];
|
||||||
|
// var form_data = new FormData();
|
||||||
|
// form_data.append('file', file_data);
|
||||||
|
// alert(form_data);
|
||||||
|
|
||||||
|
// $.ajax({
|
||||||
|
// type:'post',
|
||||||
|
// url: 'https://www.aissel.com/careers/send_career_mail',
|
||||||
|
// data: form_data,
|
||||||
|
// dataType:'json',
|
||||||
|
// beforeSend: function(){
|
||||||
|
// $('#submit-button').text("Processing...");
|
||||||
|
// $('#submit-button').attr('disabled', true);
|
||||||
|
// },
|
||||||
|
// success:function(returnData){
|
||||||
|
// $('.form').hide();
|
||||||
|
// $('.career').hide();
|
||||||
|
// if(returnData.status == true){
|
||||||
|
// $('#message').show();
|
||||||
|
// $("html, body").animate({ scrollTop: 0 }, 600);
|
||||||
|
// $('#message').html('<p class="" style="font-size: 24px; text-align: center;">Thank you for applying to Aissel Technologies. </p><p class="get-demo-subtitle" style="font-size: 16px;text-align: center;">We will keep you informed if your profile is shortlisted.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>');
|
||||||
|
// }else{
|
||||||
|
// $('#message').show();
|
||||||
|
// $('#message').html('<p class="" style="font-size:16px; text-align: center;">Sorry, Something wrong in sending email, Please try submit once again.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>');
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
</script> </div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,90 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Cookie Policy | Aissel Technologies">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="main" class="content">
|
||||||
|
<div class="container-fluid" id="cookie-policy">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-9 py-4">
|
||||||
|
<h5 class="text-center">COOKIE POLICY</h5>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7">
|
||||||
|
<h5 class="section-title">INTRODUCTION</h5>
|
||||||
|
<p class="section-content">At Aissel, we prioritize clarity and honesty in our data practices. In line with this commitment to transparency, our cookie policy is designed to provide detailed information about how and when we use cookies data.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">COOKIE USE POLICY</h5>
|
||||||
|
<p class="section-content">Cookies are small files containing texts stored on your computer or mobile phone when you visit a website. We use cookies to ensure everyone navigating our website gets the best possible experience. </p>
|
||||||
|
<p class="section-content">Cookies allow us to monitor and tailor content based on our users' interests to improve their browsing experience on our website.</p>
|
||||||
|
<p class="section-content">While enabling the cookies is not essential for the website to work, it will help enhance your browsing experience. You have the option to delete or block cookies. However, please note that by doing so, some features of this site may not work as intended.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">What types of cookies do we use?</h5>
|
||||||
|
<p class="section-content">The types of cookies used on our website can be classified into one of these categories: ' Strictly Essential cookies,' 'Persistent cookies,' 'Analytical cookies', and 'Third-party advertising cookies.'</p>
|
||||||
|
<p class="section-text">The following table gives you further information about each category, and the purposes of the cookies we set:</p>
|
||||||
|
<table class='cookie-table'>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th class="section-title">Type of Cookie</th>
|
||||||
|
<th class="section-title">What it does</th>
|
||||||
|
<th class="section-title">Source</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td class="section-title">Strictly Essential Cookies</td>
|
||||||
|
<td class="section-text">We use strictly essential cookies or necessary cookies to enable you to navigate our website and its features smoothly. These cookies are session cookies, which means they are deleted when the browser session is closed. They don't store any information that identifies you personally.</td>
|
||||||
|
<td class="section-text">Aissel Technologies Pvt. Ltd. (first party cookie)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="section-title">Persistent Cookies</td>
|
||||||
|
<td class="section-text">We use persistent cookies to track a user’s behavior on our website over time and enhance your browsing experience. This includes recording your acknowledgment of our Cookie Policy to remove the initial cookie message when you use our website.</td>
|
||||||
|
<td class="section-text">Aissel Technologies Pvt. Ltd. (first party cookie)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="section-title">Analytical Cookies</td>
|
||||||
|
<td class="section-text">We use these cookies (e.g., Google Analytics) to obtain anonymized and aggregated information on website usage statistics and patterns.</td>
|
||||||
|
<td class="section-text">Google (Alphabet, Inc.), Naukri.com (third party cookie)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="section-title">Third-Party Advertising Cookies</td>
|
||||||
|
<td class="section-text">These cookies gather data about your activities on various websites, including this one, to deliver personalized advertising. The companies generating these cookies, like Google, maintain their privacy policies and may utilize them to display tailored advertising to you on other sites based on your interactions with our website.</td>
|
||||||
|
<td class="section-text">Google (Alphabet, Inc.), Naukri.com (third party cookie)</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">How to control or delete cookies?</h5>
|
||||||
|
<p class="section-content">If your cookie preferences need to be changed, the browser settings on your computer or other device you are using to access our website would have the ability to manage cookies to suit you. Certain browsers offer the option to customize cookie settings for individual websites, granting you greater control over your privacy preferences. This allows you to block cookies from all sites except those you trust.</p>
|
||||||
|
<p class="section-content">Browser manufacturers offer help pages regarding cookie management within their products. Additionally, browsers feature tools for reviewing and deleting cookies, including those from Aissel. If you continue to browse our website without adjusting your browser settings, we will assume this as your consent to receive all cookies from our website.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">Cookies that have been set in the past</h5>
|
||||||
|
<p class="section-content">If you have disabled one or more cookies, you may still find the cookies on your device from our website placed before your disabled preference was set.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">Do Not Track (DNT)</h5>
|
||||||
|
<p class="section-content">DNT is a concept that has been advocated by regulatory agencies such as the U.S. Federal Trade Commission (FTC) for the Internet industry. It urges them to create and deploy a mechanism that allows Internet users to express their preferences and control the tracking of their online activities across websites by advertisers and other third parties by using browser settings. Aissel does not use technology that recognizes DNT signals from your web browser.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">Social Media Features</h5>
|
||||||
|
<p class="section-content">We allow you to "Connect with Us" through various social media networks via our website. Clicking on these links will connect you to those specific social media networks' webpages (Facebook, Twitter, LinkedIn, Google+), taking you away from Aissel's website. Third-party websites and social media networks have their own terms and privacy policies regarding information stored, collected, processed, and shared on those respective websites and networks. Your participation with those social media networks is subject to the social media network’s terms and privacy policy and not Aissel's.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">Behavioral Targeting or Retargeting</h5>
|
||||||
|
<p class="section-content">Our website utilizes cookies for behavioral targeting, including remarketing ads through third-party services such as Google. These cookies may collect information about your browsing activities to display targeted advertisements based on your interests. If you prefer not to receive such personalized ads, you can opt-out by adjusting your browser settings. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,288 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Data Services | KOL Identification | KOL Mapping" navNum=3>
|
||||||
|
<nav id="secondary-navbar" class="navbar d-lg-flex d-md-flex flex-md-row-reverse d-sm-none" slot="nav-slot">
|
||||||
|
<ul class="ms-auto">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class ="nav-link scrollto" href="#band-one">KOL Identification</a>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link scrollto" href="#band-four">Influence Mapping</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link scrollto" href="#band-seven_ds">KOL Profiling</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link scrollto" href="#band-nine">Institution Profiling</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<div id="data-services" class="content">
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="band-one" class="jumbotron-fluid">
|
||||||
|
<div class="container-fluid band-one">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-6 col-12 band-one-image text-lg-end text-md-end text-center px-md-5 py-lg-4 py-md-4">
|
||||||
|
<img class="img-fluid" src="/assets/images/data_services/k1i2_2.png" alt="kol-image" width="345px" height="350px" />
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-6 col-12 band-one-content py-lg-4 d-flex align-items-center">
|
||||||
|
<div class="col-lg-11 col-md-10 col-sm-12 col-12">
|
||||||
|
<h1 class="band-one-text fw-bold">Identify Thought Leaders through effective KOL Mapping</h1>
|
||||||
|
<p class="band-one-description">konectar harnesses the power of AI and ML to crawl and analyze millions of data points from various online sources. The platform categorizes data across 200,000 medical concepts for facilitating effective KOL identification. This empowers you to identify KOLs whose interests and expertise align with your required therapeutic area.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Two Section -->
|
||||||
|
<section id="band-two">
|
||||||
|
<div class="band-two">
|
||||||
|
<div class="container py-lg-5 py-md-5 py-3">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/data_services/1_social_network_analysis.png" class="" alt="social-network" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder px-lg-2 px-md-2 ps-sm-0 py-3">Social Network Analysis</label>
|
||||||
|
<p class="band-content text-start px-2">Identify the experts in the community of HCPs by understanding social networks and collaborations to create an effective communications strategy.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/data_services/2_rising_stars_and_emerging_leaders.png" class="" alt="rising stars" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder px-lg-2 px-md-2 ps-sm-0 py-3">Rising Stars and Emerging KOLs</label>
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p class="band-content text-start px-2">Discover Rising Stars who are rapidly gaining influence among their peers with our timeline-based filtering and chronological trend analysis.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/data_services/3_dynamic_ranking.png" alt="dynamic-ranking" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder px-lg-2 px-md-2 ps-sm-0 py-3">Dynamic Ranking</label>
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p class="band-content text-start px-2">Assign weightages and create criteria for ranking to generate names that fit your objectives. Segment your experts based on their interests and expertise.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Three Section -->
|
||||||
|
<section id="band-three" class="jumbotron-fluid">
|
||||||
|
<div class="container-fluid band-three d-none d-sm-none d-md-block d-lg-block">
|
||||||
|
<div class="row h-100">
|
||||||
|
<div class="col-lg-5 col-md-6 offset-lg-1 offset-md-1 d-flex align-items-center">
|
||||||
|
<div class="content-box">
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<!-- 04-04-2024 -->
|
||||||
|
<h2 class="identify-text">Data Services Tailored for Your Needs</h2>
|
||||||
|
<p class="identify-text pt-2">Identify high-impact Influence Leaders through In-depth Analysis and Robust Reporting</p>
|
||||||
|
|
||||||
|
<div class="pt-2 text-lg-end text-md-end ">
|
||||||
|
<a href="/get-demo" class="btn orange-button px-lg-5 demo_button">Request a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Four Section -->
|
||||||
|
<section id="band-four">
|
||||||
|
<div class="container-fluid band-four">
|
||||||
|
<div class="row py-4">
|
||||||
|
<div class="col-12 col-md-5 col-lg-5 d-flex align-items-center justify-content-center">
|
||||||
|
<div class="crm-image text-center">
|
||||||
|
<img class="img-fluid px-lg-5" src="/assets/images/data_services/im1i1a.png" alt="Map Influencers" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-md-4 col-lg-4 d-flex align-items-center">
|
||||||
|
<div class="content-box">
|
||||||
|
<label class="content-title">Streamline Thought Leader Identification and KOL Mapping through Direct Feedback</label>
|
||||||
|
<p class="content-description text-justify">Discover the most reliable and robust mechanism for mapping influencers through peer nominations. Let your healthcare experts tell you who they consider the influencers and whom they look up to. Utilize this invaluable feedback to map influential patterns and unlock your network's true potential.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-md-3 col-lg-2 d-flex flex-column align-self-center text-center px-0 m-auto">
|
||||||
|
<div class="content-brochure_box">
|
||||||
|
<img class="img-fluid" src="/assets/images/data_services/case_thumb_ds.png" alt="download" />
|
||||||
|
</div>
|
||||||
|
<div class="py-1">
|
||||||
|
<a href="/resources/articles" class="brochure-download-btn atplDemoBtn"><img src="/assets/images/products/download_btn.png" alt="Download Button" /> Download</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Five Section -->
|
||||||
|
<section id="band-five">
|
||||||
|
<div class="band-five">
|
||||||
|
<div class="container py-lg-5 py-md-5 py-3">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/data_services/4_peer_nominations.png" class="" alt="social-network" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block ps-lg-0 ps-md-0 ps-sm-3">
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<label class="band-title font-weight-bolder px-0 py-3">Peer Nominations</label>
|
||||||
|
<p class="band-content text-start px-0">Access a vast network of thousands of physicians from around the world to get peer nominations through surveys. You can also mobilize your field force to gather valuable feedback directly from HCPs. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/data_services/5_iInfluence_maps.png" class="" alt="rising stars" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder px-lg-2 px-md-2 ps-sm-0 py-3">Influence Maps</label>
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p class="band-content text-start px-2">Discover Global, National, and Regional influencers, their connections and further explore them at a granular level, such as state, city, or zip code, to plan engagement strategies.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/data_services/6_kols_near_me.png" alt="dynamic-ranking" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder px-0 py-3">KOLs Near Me</label>
|
||||||
|
<p class="band-content text-start px-0">Utilize the "Near Me" Feature to identify influencers in your geo Location. Adjust the distance settings to refine results and narrow down to find influential experts within your desired proximity.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Six Section -->
|
||||||
|
<section id="band-six" class="jumbotron-fluid">
|
||||||
|
<div class="container-fluid band-six d-none d-sm-none d-md-block d-lg-block">
|
||||||
|
<div class="row h-100">
|
||||||
|
<div class="col-lg-5 col-md-5 offset-lg-6 offset-md-6 d-flex align-items-center">
|
||||||
|
<div class="content-box">
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p class="effective-text pt-4">Create Effective Communications Strategies by targeting Influential Thought Leaders</p>
|
||||||
|
<div class="pt-2 text-lg-end text-md-end"><a href="/get-demo" class="btn orange-button px-lg-5 demo_button">Request a Demo</a></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Seven Section -->
|
||||||
|
<section id="band-seven_ds">
|
||||||
|
<div class="container-fluid band-seven">
|
||||||
|
<div class="row p-lg-4 py-4 align-items-center">
|
||||||
|
<div class="col-12 col-md-7 col-lg-6 content-image">
|
||||||
|
<img class="mx-auto d-block img-fluid" src="/assets/images/data_services/comprehensive2.png" alt="Comprehensive Data Services Image" />
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-md-5 col-lg-6 content-box">
|
||||||
|
<div class="p-lg-4 text-justify">
|
||||||
|
<label class="content-title pb-3">Comprehensive, Accurate and Up-to-date KOL Profiling</label>
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p class="content-description">The cutting-edge platform curates profiles of healthcare experts from thousands of online sources, giving you ready-to-use data! Save time and costs by leveraging this valuable information. Gain comprehensive insights and a profound understanding of healthcare experts so you can build stronger, more meaningful relationships.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Eight Section -->
|
||||||
|
<section id="band-eight">
|
||||||
|
<div class="band-eight">
|
||||||
|
<div class="container py-lg-5 py-md-5 py-3">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/data_services/7_data_updates_keep_the_profile_always_current.png" class="" alt="social-network" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder px-lg-2 px-md-2 ps-sm-0 py-3">Regular Updating of KOL data</label>
|
||||||
|
<p class="band-content text-start px-2">Regular Data Updates ensure you can access the most recent information regarding medical experts’ professional activities and use current insights to build stronger relationships.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/data_services/8_easily_request_new_profiles.png" class="" alt="rising stars" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder px-lg-2 px-md-2 ps-sm-0 py-3">Pay-As-You-Go</label>
|
||||||
|
<p class="band-content text-start px-2">Request profiles in just a click of a button. Scale the data as you need and keep costs under tight control with the Pay-As-You-Go model.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/data_services/9_multiple_delivery_options_for_data.png" alt="dynamic-ranking" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder px-lg-2 px-md-2 ps-sm-0 py-3">Multiple Data Delivery Options</label>
|
||||||
|
<p class="band-content text-start px-2">Choose to integrate all the data into our KOLM online software, Salesforce.com app or get dashboards in MS excel for offline usage.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Nine Section -->
|
||||||
|
<section id="band-nine">
|
||||||
|
<div class="container-fluid band-nine">
|
||||||
|
<div class="row p-lg-4 flex-lg-row flex-md-row flex-column-reverse py-4 align-items-center">
|
||||||
|
<div class="col-12 col-md-6 col-lg-6">
|
||||||
|
<div class="p-lg-4 text-justify">
|
||||||
|
<label class="content-title">Institution Profiles</label>
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p class="content-description">Explore detailed profiles of Healthcare Systems, Hospitals, Managed Care Organizations (MCOs), Accountable Care Organizations (ACOs), and Medical Associations impacting market access. Gain a clear understanding of their Organizational Structure, Publications, Key Personnel, and Network Connections.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-md-6 col-lg-6">
|
||||||
|
<img class="mx-auto d-block img-fluid" src="/assets/images/data_services/institute_profile2.png" alt="" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Ten Section -->
|
||||||
|
<section id="band-ten">
|
||||||
|
<div clas="container-fluid band-ten">
|
||||||
|
<div class="row gx-0">
|
||||||
|
<div class="col-lg-12 col-12 px-3 px-lg-0 text-center">
|
||||||
|
<p class="band-ten-text pt-3 pb-2 pb-lg-4 mb-0">Access profiles of millions of Healthcare Professionals</p>
|
||||||
|
<div class="pb-3"><a href="/get-demo" class="btn orange-button px-lg-5 demo_button">Request a Demo</a></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div> </div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,264 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
import type { GetStaticPaths } from "astro";
|
||||||
|
const website_url = import.meta.env.PUBLIC_WEBSITE_URL;
|
||||||
|
|
||||||
|
export const getStaticPaths = (() => {
|
||||||
|
const konectar_instances = [
|
||||||
|
'konectar',
|
||||||
|
'cardiology',
|
||||||
|
'cns',
|
||||||
|
'dermatology',
|
||||||
|
'endocrinology',
|
||||||
|
'eyecare',
|
||||||
|
'gastroenterology',
|
||||||
|
'nephrology',
|
||||||
|
'oncology',
|
||||||
|
'oralhealth',
|
||||||
|
'painmedicine',
|
||||||
|
'social',
|
||||||
|
'veterinary',
|
||||||
|
'virtualengagement'
|
||||||
|
]
|
||||||
|
|
||||||
|
return konectar_instances.map((instance) => ({
|
||||||
|
params: {instance}
|
||||||
|
}));
|
||||||
|
}) satisfies GetStaticPaths;
|
||||||
|
|
||||||
|
let {instance} = Astro.params;
|
||||||
|
instance = instance[0].toUpperCase() + instance.slice(1)
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title=`konectar ${instance} | KOL Management | Get Demo`>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<style>
|
||||||
|
.mobile_layout {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
@media(max-width:767px){
|
||||||
|
.mobile_layout {
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
#get-demo .get-demo-block{
|
||||||
|
background-color: #ffffff;
|
||||||
|
border-color: #000;
|
||||||
|
}
|
||||||
|
#get-demo .band-one {
|
||||||
|
background: none;
|
||||||
|
min-height: 100%;
|
||||||
|
}
|
||||||
|
/* .desktop_layout */
|
||||||
|
div#demo-content {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
label {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
#get-demo-form {
|
||||||
|
margin-top:30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* MObile */
|
||||||
|
.band1{
|
||||||
|
background: url("/assets/images/get_demo/demo_background.jpg") no-repeat scroll 0 0 / 100% 100%;
|
||||||
|
height: 248px;
|
||||||
|
}
|
||||||
|
.demoManagement{
|
||||||
|
border-style: none;
|
||||||
|
border-color: transparent;
|
||||||
|
background-color: #282828;
|
||||||
|
opacity: 0.65;
|
||||||
|
padding:0;
|
||||||
|
line-height: 30px;
|
||||||
|
}
|
||||||
|
.labelBold{
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 29px;
|
||||||
|
font-family: asap, sans-serif;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
.labelBold1{
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-family:asap-bold-italic;
|
||||||
|
}
|
||||||
|
.labelBold2{
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
.demoInput{
|
||||||
|
width: 100%;
|
||||||
|
height: 30px;
|
||||||
|
}
|
||||||
|
.submitButton{
|
||||||
|
text-align:center;
|
||||||
|
margin-bottom:-15px;
|
||||||
|
padding-top:15px;
|
||||||
|
}
|
||||||
|
div.titleBackground h1 {
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
@media(max-width:480px){
|
||||||
|
.labelBold{
|
||||||
|
font-size: 19px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div id="get-demo" class="content">
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="band-one" class="jumbotron-fluid">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row band1 mobile_layout ">
|
||||||
|
<div class="kolManagement">
|
||||||
|
<div class="col-12" style="padding: 35px 0 10px 0;">
|
||||||
|
<div class="row konectarBandOne">
|
||||||
|
<div class="col-6 offset-6 demoManagement">
|
||||||
|
<div class="titleBackground" style="margin:0;padding: 0 10px;"><h1 class="labelBold">Get a Live Demo - {instance}</h1><span class="labelBold1"> KOL Management for Life Sciences.</span><br><span class="labelBold2">Engage the right experts,<br>Develop strong partnerships.</span> </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row mobile_layout band-bg-demo">
|
||||||
|
<div class="row justify-content-center" id="demo-content">
|
||||||
|
<div class="col-lg-9 col-md-9 col-sm-10 col-12 demo-content py-lg-5 py-3 px-lg-4">
|
||||||
|
<h2 class="get-live-demo">Get a Live Demo - {instance}</h2>
|
||||||
|
<!-- 04-04-2024 -->
|
||||||
|
<h4 class="get-demo-subtitle">KOL Management Platform for Life Sciences.</h4>
|
||||||
|
<p class="get-demo-text">Engage the right experts,</p>
|
||||||
|
<p class="get-demo-text">Develop strong partnerships.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row justify-content-end band-one desktop_layout">
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12 parallax_with_opacity pb-4 pb-sm-5">
|
||||||
|
<div class="get-demo-block me-5 me-md-3"></div>
|
||||||
|
<div class="row justify-content-center" id="demo-content">
|
||||||
|
<div class="col-lg-9 col-md-9 col-sm-10 col-12 demo-content py-lg-5 py-3 px-lg-4">
|
||||||
|
<h4 class="get-live-demo">Get a Live Demo - {instance}</h4>
|
||||||
|
<p class="get-demo-subtitle">KOL Management Platform for Life Sciences.</p>
|
||||||
|
<p class="get-demo-text">Engage the right experts,</p>
|
||||||
|
<p class="get-demo-text">Develop strong partnerships.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="get-demo-message col-md-10" id="message"></div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-9 col-md-10 col-sm-11 offset-sm-1 offset-md-0 col-12">
|
||||||
|
<div class="get-demo-form" id="get-demo-form">
|
||||||
|
<form action="" method="post" id="request-demo-form" class="request-demo-form">
|
||||||
|
<input type="hidden" name="csrf_test_name" value="985889428bf3d8914d5b79a5b3dbc1d7" /> <input type="hidden" id="url" name="type_of_request" value={instance} />
|
||||||
|
<div class="mb-lg-3 mb-md-3 mb-sm-3 row">
|
||||||
|
<label class="col-sm-3 col-12 col-form-label d-flex justify-content-lg-end">Name<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-md-9 col-sm-6 col-12">
|
||||||
|
<input class="form-control" type="text" name="name" id="full_name" placeholder="Full Name" aria-label="Enter your Full name" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mb-lg-3 mb-md-3 mb-sm-3 row ">
|
||||||
|
<label class="col-sm-3 col-12 col-form-label d-flex justify-content-lg-end">Company<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-md-9 col-sm-6 col-12">
|
||||||
|
<input class="form-control" type="text" name="company_name" id="company_name" placeholder="Company Name" aria-label="Enter your Company name" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-lg-3 mb-md-3 mb-sm-3 row">
|
||||||
|
<label class="col-sm-3 col-12 col-form-label d-flex justify-content-lg-end">Email<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-md-9 col-sm-6 col-12">
|
||||||
|
<input class="form-control" type="text" name="email" id="email" placeholder="Business Email" aria-label="Enter your Business Email" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-lg-3 mb-md-3 mb-sm-3 row">
|
||||||
|
<label class="col-sm-3 col-12 col-form-label d-flex justify-content-lg-end">Phone</label>
|
||||||
|
<div class="col-md-9 col-sm-6 col-12">
|
||||||
|
<input class="form-control phone_number" type="text" name="phone_number" id="phone_number" placeholder="Business Phone number" aria-label="Enter your Business Phone Number" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-lg-3 mb-md-3 mb-sm-3 mt-3 row">
|
||||||
|
<div class="offset-md-3 offset-sm-3 col-md-9 col-sm-6 col-5 text-center margin-xs-auto">
|
||||||
|
<button type="button" onClick="submitForm(); return false;" name="submit" id="submit-button" value="Submit" class="btn get-submit-btn get-demo-btn w-100 gAnalytics_getADemoSubmitForm">Request a demo</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<div id="webiste_url" data-key={website_url}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script is:inline>
|
||||||
|
const element = document.getElementById('webiste_url');
|
||||||
|
const url_key = element.dataset.key;
|
||||||
|
const send_mail_url = `${url_key}/send_mail/get_demo`;
|
||||||
|
$("#request-demo-form").validate({
|
||||||
|
rules: {
|
||||||
|
name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 2,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 3,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
email: {
|
||||||
|
required: true,
|
||||||
|
email: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
name: {
|
||||||
|
required: "Please enter your name",
|
||||||
|
minlength: "Your name must consist of at least 2 characters",
|
||||||
|
maxlength: "Your name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: "Please enter your company name",
|
||||||
|
minlength: "Your company name must consist of at least 3 characters",
|
||||||
|
maxlength: "Your company name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
email: "Please enter a valid email address"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function submitForm(){
|
||||||
|
if(!$("#request-demo-form").validate().form()){
|
||||||
|
return false;
|
||||||
|
}else{
|
||||||
|
$.ajax({
|
||||||
|
type:"post",
|
||||||
|
url: send_mail_url,
|
||||||
|
data: $('#request-demo-form').serialize(),
|
||||||
|
dataType:'json',
|
||||||
|
beforeSend: function(){
|
||||||
|
$('#submit-button').text("Processing...");
|
||||||
|
$('#submit-button').attr('disabled', true);
|
||||||
|
},
|
||||||
|
success: function(returnData){
|
||||||
|
// console.log(returnData);
|
||||||
|
$('.demo-content').hide();
|
||||||
|
$('.get-demo-form').hide();
|
||||||
|
if(returnData.acknowledged == true){
|
||||||
|
$('#message').show();
|
||||||
|
$("html, body").animate({ scrollTop: 0 }, "slow");
|
||||||
|
$('#message').html('<p class="get-demo-subtitle" style="font-size: 24px; color:white; text-align: center;">Thank you for contacting us.</p><p class="get-demo-subtitle" style="font-size: 16px;text-align: center;">We will get in touch with you shortly to set up a live demo.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>');
|
||||||
|
}else{
|
||||||
|
$('#message').show();
|
||||||
|
$('#message').html('<p class="get-demo-subtitle" style="font-size:16px;color:white;text-align: center;">Something went wrong. Please submit your details again.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,240 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
const website_url = import.meta.env.PUBLIC_WEBSITE_URL;
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Get a Demo | KOL Management Software: konectar">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<style>
|
||||||
|
.mobile_layout {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
@media(max-width:767px){
|
||||||
|
.mobile_layout {
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
#get-demo .get-demo-block{
|
||||||
|
background-color: #ffffff;
|
||||||
|
border-color: #000;
|
||||||
|
}
|
||||||
|
#get-demo .band-one {
|
||||||
|
background: none;
|
||||||
|
min-height: 100%;
|
||||||
|
}
|
||||||
|
/* .desktop_layout */
|
||||||
|
div#demo-content {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
label {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
#get-demo-form {
|
||||||
|
margin-top:30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* MObile */
|
||||||
|
.band1{
|
||||||
|
background: url("/assets/images/get_demo/demo_background.jpg") no-repeat scroll 0 0 / 100% 100%;
|
||||||
|
height: 248px;
|
||||||
|
}
|
||||||
|
.demoManagement{
|
||||||
|
border-style: none;
|
||||||
|
border-color: transparent;
|
||||||
|
background-color: #282828;
|
||||||
|
opacity: 0.65;
|
||||||
|
padding:0;
|
||||||
|
line-height: 30px;
|
||||||
|
}
|
||||||
|
.labelBold{
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 29px;
|
||||||
|
font-family: asap, sans-serif;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
.labelBold1{
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-family:asap-bold-italic;
|
||||||
|
}
|
||||||
|
.labelBold2{
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
.demoInput{
|
||||||
|
width: 100%;
|
||||||
|
height: 30px;
|
||||||
|
}
|
||||||
|
.submitButton{
|
||||||
|
text-align:center;
|
||||||
|
margin-bottom:-15px;
|
||||||
|
padding-top:15px;
|
||||||
|
}
|
||||||
|
div.titleBackground h1 {
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
@media(max-width:480px){
|
||||||
|
.labelBold{
|
||||||
|
font-size: 19px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div id="get-demo" class="content">
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="band-one" class="jumbotron-fluid">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row band1 mobile_layout ">
|
||||||
|
<div class="kolManagement">
|
||||||
|
<div class="col-12" style="padding: 35px 0 10px 0;">
|
||||||
|
<div class="row konectarBandOne">
|
||||||
|
<div class="col-6 offset-6 demoManagement">
|
||||||
|
<div class="titleBackground" style="margin:0;padding: 0 10px;"><h1 class="labelBold">Get a Live Demo </h1><span class="labelBold1"> KOL Management for Life Sciences.</span><br><span class="labelBold2">Engage the right experts,<br>Develop strong partnerships.</span> </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row mobile_layout band-bg-demo">
|
||||||
|
<div class="row justify-content-center" id="demo-content">
|
||||||
|
<div class="col-lg-9 col-md-9 col-sm-10 col-12 demo-content py-lg-5 py-3 px-lg-4">
|
||||||
|
<h2 class="get-live-demo">Get a Live Demo </h2>
|
||||||
|
<!-- 04-04-2024 -->
|
||||||
|
<h4 class="get-demo-subtitle">KOL Management Platform for Life Sciences.</h4>
|
||||||
|
<p class="get-demo-text">Engage the right experts,</p>
|
||||||
|
<p class="get-demo-text">Develop strong partnerships.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row justify-content-end band-one desktop_layout">
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12 parallax_with_opacity pb-4 pb-sm-5">
|
||||||
|
<div class="get-demo-block me-5 me-md-3"></div>
|
||||||
|
<div class="row justify-content-center" id="demo-content">
|
||||||
|
<div class="col-lg-9 col-md-9 col-sm-10 col-12 demo-content py-lg-5 py-3 px-lg-4">
|
||||||
|
<h4 class="get-live-demo">Get a Live Demo </h4>
|
||||||
|
<p class="get-demo-subtitle">KOL Management Platform for Life Sciences.</p>
|
||||||
|
<p class="get-demo-text">Engage the right experts,</p>
|
||||||
|
<p class="get-demo-text">Develop strong partnerships.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="get-demo-message col-md-10" id="message"></div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-9 col-md-10 col-sm-11 offset-sm-1 offset-md-0 col-12">
|
||||||
|
<div class="get-demo-form" id="get-demo-form">
|
||||||
|
<form action="" method="post" id="request-demo-form" class="request-demo-form">
|
||||||
|
<input type="hidden" name="csrf_test_name" value="985889428bf3d8914d5b79a5b3dbc1d7" /> <input type="hidden" id="url" name="type_of_request" value="" />
|
||||||
|
<div class="mb-lg-3 mb-md-3 mb-sm-3 row">
|
||||||
|
<label class="col-sm-3 col-12 col-form-label d-flex justify-content-lg-end">Name<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-md-9 col-sm-6 col-12">
|
||||||
|
<input class="form-control" type="text" name="name" id="full_name" placeholder="Full Name" aria-label="Enter your Full name" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mb-lg-3 mb-md-3 mb-sm-3 row ">
|
||||||
|
<label class="col-sm-3 col-12 col-form-label d-flex justify-content-lg-end">Company<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-md-9 col-sm-6 col-12">
|
||||||
|
<input class="form-control" type="text" name="company_name" id="company_name" placeholder="Company Name" aria-label="Enter your Company name" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-lg-3 mb-md-3 mb-sm-3 row">
|
||||||
|
<label class="col-sm-3 col-12 col-form-label d-flex justify-content-lg-end">Email<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-md-9 col-sm-6 col-12">
|
||||||
|
<input class="form-control" type="text" name="email" id="email" placeholder="Business Email" aria-label="Enter your Business Email" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-lg-3 mb-md-3 mb-sm-3 row">
|
||||||
|
<label class="col-sm-3 col-12 col-form-label d-flex justify-content-lg-end">Phone</label>
|
||||||
|
<div class="col-md-9 col-sm-6 col-12">
|
||||||
|
<input class="form-control phone_number" type="text" name="phone_number" id="phone_number" placeholder="Business Phone number" aria-label="Enter your Business Phone Number" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-lg-3 mb-md-3 mb-sm-3 mt-3 row">
|
||||||
|
<div class="offset-md-3 offset-sm-3 col-md-9 col-sm-6 col-5 text-center margin-xs-auto">
|
||||||
|
<button type="button" onClick="submitForm();" name="submit" id="submit-button" value="Submit" class="btn get-submit-btn get-demo-btn w-100 gAnalytics_getADemoSubmitForm">Request a demo</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<div id="website_url" data-key={website_url}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script is:inline>
|
||||||
|
const element = document.getElementById('website_url');
|
||||||
|
const url_key = element.dataset.key;
|
||||||
|
const send_mail_url = `${url_key}/send_mail/get_demo`;
|
||||||
|
$("#request-demo-form").validate({
|
||||||
|
rules: {
|
||||||
|
name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 2,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 3,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
email: {
|
||||||
|
required: true,
|
||||||
|
email: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
name: {
|
||||||
|
required: "Please enter your name",
|
||||||
|
minlength: "Your name must consist of at least 2 characters",
|
||||||
|
maxlength: "Your name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: "Please enter your company name",
|
||||||
|
minlength: "Your company name must consist of at least 3 characters",
|
||||||
|
maxlength: "Your company name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
email: "Please enter a valid email address"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function submitForm(){
|
||||||
|
if(!$("#request-demo-form").validate().form()){
|
||||||
|
return false;
|
||||||
|
}else{
|
||||||
|
$.ajax({
|
||||||
|
type:"post",
|
||||||
|
url: send_mail_url,
|
||||||
|
data: $('#request-demo-form').serialize(),
|
||||||
|
dataType:'json',
|
||||||
|
beforeSend: function(){
|
||||||
|
$('#submit-button').text("Processing...");
|
||||||
|
$('#submit-button').attr('disabled', true);
|
||||||
|
},
|
||||||
|
success: function(returnData){
|
||||||
|
// console.log(returnData);
|
||||||
|
$('.demo-content').hide();
|
||||||
|
$('.get-demo-form').hide();
|
||||||
|
if(returnData.acknowledged == true){
|
||||||
|
$('#message').show();
|
||||||
|
$("html, body").animate({ scrollTop: 0 }, "slow");
|
||||||
|
$('#message').html('<p class="get-demo-subtitle" style="font-size: 24px; color:white; text-align: center;">Thank you for contacting us.</p><p class="get-demo-subtitle" style="font-size: 16px;text-align: center;">We will get in touch with you shortly to set up a live demo.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>');
|
||||||
|
}else{
|
||||||
|
$('#message').show();
|
||||||
|
$('#message').html('<p class="get-demo-subtitle" style="font-size:16px;color:white;text-align: center;">Something went wrong. Please submit your details again.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,781 @@
|
||||||
|
---
|
||||||
|
const website_url = import.meta.env.PUBLIC_WEBSITE_URL;
|
||||||
|
|
||||||
|
let url = Astro.url.pathname.replace(/\/$/, '');
|
||||||
|
|
||||||
|
url = url.replace(/\/(.*)/, (_, rest) => rest.replace(/\//g, '|'));
|
||||||
|
|
||||||
|
|
||||||
|
let tags = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/list-keywords/${url}`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
tags = res;
|
||||||
|
// console.log(res);
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
let tag_details = null
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/tags-manager`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
tag_details = res;
|
||||||
|
// console.log(res);
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
let data = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/chatbox`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
data = res.content;
|
||||||
|
// console.log(data);
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
---
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>{tags.title}</title>
|
||||||
|
<!-- *** Meta Tags *** -->
|
||||||
|
<!-- <meta name="robots" content="noindex, nofollow"> -->
|
||||||
|
{tags.robots_index !== "" && tags.robots_follow !== "" ? (
|
||||||
|
<meta name="robots" content={`${tags.robots_index} , ${tags.robots_follow} `} />
|
||||||
|
) : (
|
||||||
|
<meta name="robots" content="noindex, nofollow" />
|
||||||
|
)}
|
||||||
|
|
||||||
|
<meta name="description" content=`${tags.description}` />
|
||||||
|
<meta name="keywords" content=`${tags.keywords}` />
|
||||||
|
|
||||||
|
{tags.og_tags && Object.entries(tags.og_tags).map(([tag, value]) => (
|
||||||
|
<meta property=`${tag}` content=`${value}` />
|
||||||
|
))}
|
||||||
|
|
||||||
|
<link rel="canonical" href={tags.canonical} />
|
||||||
|
<!-- *** Favicons *** -->
|
||||||
|
<link href="/assets/favicon.ico" rel="icon">
|
||||||
|
<!-- *** Provider CSS Files *** -->
|
||||||
|
<link href="/assets/css/5.0/bootstrap.min.css" rel="stylesheet" defer/>
|
||||||
|
<link href="/assets/css/bootstrap-icons.css" rel="stylesheet" />
|
||||||
|
<!-- *** Template Main CSS File *** -->
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/home.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/fonts.css" rel=preload>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/responsive.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/jquery.webui-popover.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/animate.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/klaro/klaro.min.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/font-awesome/6.3.0/css/all.min.css" />
|
||||||
|
<!-- Swiper CSS file -->
|
||||||
|
<link rel="stylesheet" href="/assets/css/swiper-bundle.min.css"/>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Swiper JS file -->
|
||||||
|
<script src="/assets/js/swiper-bundle.min.js" data-astro-rerun></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- *** Template Main Jquery File *** -->
|
||||||
|
<script src="/assets/js/5.0/jquery.min.js" type="text/javascript"
|
||||||
|
data-astro-rerun></script>
|
||||||
|
<!-- *** Vendor JS Files *** -->
|
||||||
|
<script src="/assets/js/5.0/popper.min.js" crossorigin="anonymous"></script>
|
||||||
|
<script src="/assets/js/5.0/bootstrap.min.js" crossorigin="anonymous"></script>
|
||||||
|
<!-- *** Validation Script *** -->
|
||||||
|
<script src="/assets/js/jquery.validate.js" crossorigin="anonymous"></script>
|
||||||
|
<!-- *** Extra Script *** -->
|
||||||
|
<script src="/assets/js/jquery.imageslider.js" defer
|
||||||
|
data-astro-rerun></script>
|
||||||
|
<script src="/assets/js/jquery.webui-popover.js" defer></script>
|
||||||
|
<script src="/assets/js/klaro/klaro.js" defer></script>
|
||||||
|
<script src="/assets/js/CKEditor5/ckeditor5.js" defer></script>
|
||||||
|
|
||||||
|
<Fragment set:html={tag_details.before_head}/>
|
||||||
|
</head>
|
||||||
|
<body id="body">
|
||||||
|
<Fragment set:html={tag_details.initial_body_content}/>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<style>
|
||||||
|
.analyst-topbar{
|
||||||
|
position: absolute;
|
||||||
|
left: 269px !important;
|
||||||
|
top: -70px !important;
|
||||||
|
z-index: 1025 !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<header id="header" class="campaign-header align-items-center sticky-top">
|
||||||
|
|
||||||
|
<section id="header-container" class="">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 col-6 nav-section">
|
||||||
|
<div class="navbar-section container-fluid" style="margin-top: 12px;margin-bottom: 6px;">
|
||||||
|
<div class="row">
|
||||||
|
|
||||||
|
<nav class="navbar fixed-top justify-content-end pt-1">
|
||||||
|
<div class="col-lg-6 col-md-5 col-4 campaign-header-logo mb-2">
|
||||||
|
<a href="https://www.aissel.com" class="logo"><img class="p-0 img-fluid" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" alt="Konectar Logo"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-7 col-8 d-flex justify-content-end align-items-center">
|
||||||
|
<span class="px-lg-4 px-md-4 px-sm-4">
|
||||||
|
<a href="mailto:sales@aissel.com"><img alt="Aissel Email" class="contact-icon img-fluid"
|
||||||
|
src="/assets/images/envelope5.png" width="30px;"></a>
|
||||||
|
<a class="support_email_id"
|
||||||
|
href="mailto:sales@aissel.com">sales@aissel.com
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
<span class="px-lg-4 px-md-4 px-sm-4">
|
||||||
|
<a href="tel:+13479668181,1"><img alt="Aissel Phone" class="contact-icon img-fluid"
|
||||||
|
src="/assets/images/telephone.png" width="30px;"></a>
|
||||||
|
<a class="footer_phone" href="tel:+13479668181,1">+1 (347) 966-8181 X 1 </a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</header>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script> <!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" href="/assets/css/hcp_engagement.css">
|
||||||
|
<div id="hcp-engagement-main" class="hcp-engagement">
|
||||||
|
<section class="campaign-section1" id="campaign-section1">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row main-text mx-auto mb-2">
|
||||||
|
<p class="mb-0 py-0 text-center" style=""><img class="img-fluid" width="100%" src="/assets/images/konectar/logo/konectar_white_logo.png" alt="Konectar Logo"> - Your end-to-end HCP Engagement Platform!</p>
|
||||||
|
</div>
|
||||||
|
<div class="row sub-text mx-auto mb-2">
|
||||||
|
<p class="mb-0 py-0">Tired of sifting through the same generic data offered by every other</p>
|
||||||
|
</div>
|
||||||
|
<div class="row sub-text mx-auto mb-3">
|
||||||
|
<p class="mb-0 py-0"> HCP Engagement Platform you've come across?</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="campaign-section2" id="campaign-section2">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-md-6 col-12 my-auto py-lg-4">
|
||||||
|
<img class="img-fluid" src="/assets/images/new-campaign/campaign-img.svg"
|
||||||
|
alt="HCP Engagement Platform">
|
||||||
|
</div>
|
||||||
|
<div id="get-campaign-demo" class="col-lg-6 col-md-6 col-12 my-lg-auto mt-md-3">
|
||||||
|
<div id="message"></div>
|
||||||
|
<div id="get-campaign-form" class="campaign-form-container pt-3 mx-auto">
|
||||||
|
<div class="form-header text-center py-lg-2 py-1">
|
||||||
|
<h4 class="campaign-form-header-text">Request a Demo</h4>
|
||||||
|
</div>
|
||||||
|
<form action="" method="post" id="getDemoForm" class="request-demo-form">
|
||||||
|
<input type="hidden" id="url" name="url" value="hcp-engagement/konectar" />
|
||||||
|
<div class="mb-lg-3 mb-2 row justify-content-center">
|
||||||
|
<label
|
||||||
|
class="col-lg-1 col-md-1 col-sm-2 col-1 p-lg-0 m-lg-0 col-form-label d-flex justify-content-lg-end"><span
|
||||||
|
class="mandatory fs-5">*</span></label>
|
||||||
|
<div class="col-lg-10 col-md-9 col-sm-7 col-10 pe-lg-4">
|
||||||
|
<input class="form-control" type="text" name="name" id="full_name"
|
||||||
|
placeholder="Full Name" aria-label="Enter your Full name" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-lg-3 mb-2 row justify-content-center">
|
||||||
|
<label
|
||||||
|
class="col-lg-1 col-md-1 col-sm-2 p-lg-0 m-lg-0 col-1 col-form-label d-flex justify-content-lg-end"><span
|
||||||
|
class="mandatory fs-5">*</span></label>
|
||||||
|
<div class="col-lg-10 col-md-9 col-sm-7 col-10 pe-lg-4">
|
||||||
|
<input class="form-control" type="text" name="company_name" id="company_name"
|
||||||
|
placeholder="Company Name" aria-label="Enter your Company name" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-lg-3 mb-2 row justify-content-center">
|
||||||
|
<label
|
||||||
|
class="col-lg-1 col-md-1 col-sm-2 p-lg-0 m-lg-0 col-1 col-form-label d-flex justify-content-lg-end"><span
|
||||||
|
class="mandatory fs-5">*</span></label>
|
||||||
|
<div class="col-lg-10 col-md-9 col-sm-7 col-10 pe-lg-4">
|
||||||
|
<input class="form-control" type="text" name="email" id="email"
|
||||||
|
placeholder="Business Email" aria-label="Enter your Business Email" required />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-lg-3 mb-2 row justify-content-center">
|
||||||
|
<label
|
||||||
|
class="col-lg-1 col-md-1 col-sm-2 p-lg-0 m-lg-0 col-1 col-form-label d-flex justify-content-lg-end"></label>
|
||||||
|
<div class="mb-lg-4 col-lg-10 col-md-9 col-sm-7 col-10 pe-lg-4">
|
||||||
|
<input class="form-control" type="text" name="phone_number" id="phone_number"
|
||||||
|
placeholder="Business Phone number"
|
||||||
|
aria-label="Enter your Business Phone Number" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mt-3 row">
|
||||||
|
<div
|
||||||
|
class="col-lg-4 offset-lg-4 col-md-4 col-sm-7 col-5 text-center button-center mx-auto mb-md-3 mb-3">
|
||||||
|
<button type="button" onClick="submitCampaignForm(); return false;" name="submit"
|
||||||
|
id="submit-button" value="Submit"
|
||||||
|
class="btn get-submit-btn mb-lg-3 w-100 gAnalytics_getADemoSubmitForm">Submit</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="mt-3 row">
|
||||||
|
<div class="col-lg-4 offset-lg-4 col-md-4 col-sm-7 col-5 text-center button-center mx-auto">
|
||||||
|
<button type="button" onClick="submitCampaignForm(); return false;" name="submit" id="submit-button" value="Submit" class="btn get-submit-btn mb-lg-3 w-100 gAnalytics_getADemoSubmitForm">Submit</button>
|
||||||
|
</div>
|
||||||
|
</div> -->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row sub-content mx-auto pt-md-4">
|
||||||
|
<p class="tag-line text-center fs-4">Then, it's time to experience the konectar difference!</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="campaign-section3" id="campaign-section3">
|
||||||
|
<div class="container pt-4">
|
||||||
|
<div class="row main-text mx-auto mb-2">
|
||||||
|
<div class="col-lg-12">
|
||||||
|
<p class="mb-0 py-0" style="">konectar is an AI-powered HCP Engagement Platform that crawls billions
|
||||||
|
of data points across the web to provide accurate
|
||||||
|
and detailed analysis of over 2 Million HCP profiles!</br>
|
||||||
|
The Platform's robust features help identify relevant medical professionals for a successful
|
||||||
|
long-term collaboration.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row hcp-teams-block justify-content-center">
|
||||||
|
<div class="col-lg-10 col-12 pt-lg-4">
|
||||||
|
<p class="hcp-teams-tagline text-center">
|
||||||
|
<img class="img-fluid konectar-tagline mb-2"
|
||||||
|
src="/assets/images/konectar/logo/aissel_konectar_logo.svg"
|
||||||
|
width="100px" height="20px" alt="aissel-konectar-logo">- A one-stop HCP Management solution
|
||||||
|
for your Medical Affairs,
|
||||||
|
Clinical Affairs and Commercial Teams
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row d-flex justify-content-center py-4">
|
||||||
|
<img class="img-fluid text-center hcp-teams-img"
|
||||||
|
src="/assets/images/new-campaign/infographics_mobile.svg" width="75%"
|
||||||
|
height="" alt="HCP Teams">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="campaign-section4" id="campaign-section4">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row d-flex justify-content-center py-3">
|
||||||
|
<div class="col-lg-9 col-12 d-flex justify-content-between">
|
||||||
|
<div class="col-lg-4 col-4 px-lg-3 px-1">
|
||||||
|
<div class="card mx-auto border-0">
|
||||||
|
<div class="card-header d-flex flex-column justify-content-center">
|
||||||
|
<h1>Discover</h1>
|
||||||
|
<h5 class="fst-italic">Find the top HCPs from 25+ Specialities</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-container p-2 px-3">
|
||||||
|
<p class="card-subtext">Get Custom Data and <b>Save 200%</b> of your Time.
|
||||||
|
Gain a Comprehensive 360-degree Insight into Professional Activities.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4 col-4 px-lg-3 px-1">
|
||||||
|
<div class="card mx-auto border-0">
|
||||||
|
<div class="card-header d-flex flex-column justify-content-center">
|
||||||
|
<h1>Profile</h1>
|
||||||
|
<h5 class="fst-italic">Gain access to repository of 2M+ HCP Profiles</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-container p-2 px-3">
|
||||||
|
<p class="card-subtext">Stay Current with <b>100%</b> Updated Profiles.</br>
|
||||||
|
<b>Save 150%</b> of Time with In-depth Profiles.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4 col-4 px-lg-3 px-1">
|
||||||
|
<div class="card mx-auto border-0">
|
||||||
|
<div class="card-header d-flex flex-column justify-content-center">
|
||||||
|
<h1>Engage</h1>
|
||||||
|
<h5 class="fst-italic">Conduct 100% accurate Interacting Tracking</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card-container p-2 px-3">
|
||||||
|
<p class="card-subtext">Explore <b>76+</b> Million HCP Payment Records.</br>
|
||||||
|
Conduct face-to-face meetings virtually & </br><b>Save 60%</b> of your time.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="campaign-section5" id="campaign-section5 py-lg-5">
|
||||||
|
<div class="container-fluid pt-4 px-lg-5">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 col-12 py-3">
|
||||||
|
<h2 class="header-text fw-bold text-center">Some unique features of konectar</h2>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row sub-container pb-5 pb-md-4 pb-lg-5">
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
|
<p class="standout-features-content-a"><b class="bold-text">HCP Profiling:</b> Seeking a curated
|
||||||
|
list of HCPs specializing in
|
||||||
|
specific therapeutics? Or perhaps you're interested in exploring the medical
|
||||||
|
expert's affiliations, their publications, clinical trials, and payment data?
|
||||||
|
This platform provides all the healthcare data insights you need in one place!
|
||||||
|
</p>
|
||||||
|
<p class="standout-features-content-a"><b>Network Maps:</b> Want to understand more about HCP-pharma
|
||||||
|
collaborations or how
|
||||||
|
HCPs collaborate and influence one another? The network maps will help you unlock the
|
||||||
|
connections within the vibrant healthcare landscape.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="img1 col-lg-6 col-md-6 col-sm-12 col-12 d-flex justify-content-center">
|
||||||
|
<div class="standout-features-content-a-img text-center position-absolute">
|
||||||
|
<div class="overlay-img"></div>
|
||||||
|
<img class="img-fluid position-relative"
|
||||||
|
src="/assets/images/new-campaign/google-trends.svg"
|
||||||
|
alt="Standout HCP Profiling" width="" height="auto">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="row sub-container py-lg-5 py-md-3 py-5">
|
||||||
|
<div class="img2 col-lg-6 col-md-6 col-sm-12 col-12 d-flex justify-content-center">
|
||||||
|
<div class="standout-features-content-a-img text-center position-absolute">
|
||||||
|
<div class="overlay-img"></div>
|
||||||
|
<img class="img-fluid position-relative"
|
||||||
|
src="/assets/images/new-campaign/hcp_segmentation.svg"
|
||||||
|
alt="Standout HCP Profiling" width="" height="auto">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
|
<p class="standout-features-content-a"><b class="bold-text">HCP Segmentation:</b> Yes, with
|
||||||
|
konectar, you can
|
||||||
|
segmentize HCPs into prescribers, researchers, and influential speakers. You can also fine-tune
|
||||||
|
the list
|
||||||
|
further based on their therapeutic area, expertise, geographic location, affiliations, and more!
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<p class="standout-features-content-a"><b>HCP Trends:</b> Easily identify emerging experts who are
|
||||||
|
on the path
|
||||||
|
to becoming influencers. HCP Trends allows you to analyze the HCPs that have moved up and down
|
||||||
|
the ladder
|
||||||
|
in the last 5, 3, and 1 year based on their professional activities.
|
||||||
|
</p>
|
||||||
|
<p class="standout-features-content-a"><b>Sentiment Analysis:</b> Leverage the sentiment analysis AI
|
||||||
|
tool to gain insights into HCP sentiment trends over a time period and across
|
||||||
|
various demographics or geographical areas.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="row request-btn">
|
||||||
|
<div class="col-lg-3 mx-auto pt-lg-5 mt-3 text-center">
|
||||||
|
<a href="#campaign-section2" class="my-lg-3 btn-get-demo mx-auto">Request a Demo</a>
|
||||||
|
</div>
|
||||||
|
<div class="testimonials-tagline text-center py-4">
|
||||||
|
<p class="text-decoration-underline ">Hear what our customers have to say about the platform!</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="container-fluid pt-2 campaign-section6" id="campaign-section6">
|
||||||
|
<div class="pb-5">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 col-sm-12 col-md-12 col-lg-12 py-3">
|
||||||
|
<div class="swiper mySwiper">
|
||||||
|
<div class="swiper-wrapper">
|
||||||
|
<div class="swiper-slide">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-1">
|
||||||
|
<i class="fa-sharp fa-solid fa-quote-left my-2"></i>
|
||||||
|
</div>
|
||||||
|
<div class="col-10">
|
||||||
|
<p>Wow, this is an impressive list! Thank
|
||||||
|
you for sharing. Our team was really
|
||||||
|
impressed by the list. Our team is happy
|
||||||
|
with the results of our project
|
||||||
|
</p>
|
||||||
|
<h5 class="fw-bold">Professional Relations Manager</h5>
|
||||||
|
</div>
|
||||||
|
<div class="col-1">
|
||||||
|
<i class="fa-sharp fa-solid fa-quote-right my-2" aria-hidden="true"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="swiper-slide d-flex flex-column">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-1">
|
||||||
|
<i class="fa-sharp fa-solid fa-quote-left my-2"></i>
|
||||||
|
</div>
|
||||||
|
<div class="col-10">
|
||||||
|
<p>The flexibility of the tool is great. The
|
||||||
|
ability to start with strategic needs and
|
||||||
|
move to future tactical needs is the best feature
|
||||||
|
</p>
|
||||||
|
<h5 class="fw-bold">Director, New Products Planning</h5>
|
||||||
|
</div>
|
||||||
|
<div class="col-1">
|
||||||
|
<i class="fa-sharp fa-solid fa-quote-right my-2" aria-hidden="true"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="swiper-slide d-flex flex-column">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-1">
|
||||||
|
<i class="fa-sharp fa-solid fa-quote-left my-2"></i>
|
||||||
|
</div>
|
||||||
|
<div class="col-10">
|
||||||
|
<p>Terrific look! Thanks so much for the work
|
||||||
|
and the continued responsiveness! I'm impressed
|
||||||
|
</p>
|
||||||
|
<h5 class="fw-bold">Director, Medical Affairs</h5>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-1">
|
||||||
|
<i class="fa-sharp fa-solid fa-quote-right my-2" aria-hidden="true"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="swiper-slide d-flex flex-column">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-1">
|
||||||
|
<i class="fa-sharp fa-solid fa-quote-left my-2"></i>
|
||||||
|
</div>
|
||||||
|
<div class="col-10">
|
||||||
|
<p>Aissel has done a good job for us so far so I have no hesitancy to recommend
|
||||||
|
them, especially because of the flexibility they have shown to our specific
|
||||||
|
needs in each of our project (TL profiling in Emerging Markets and Global CV
|
||||||
|
- Diabetes TLs).
|
||||||
|
</p>
|
||||||
|
<h5 class="fw-bold">Associate Director, Global Medical Affairs</h5>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-1">
|
||||||
|
<i class="fa-sharp fa-solid fa-quote-right my-2" aria-hidden="true"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="swiper-slide d-flex flex-column d-xl-block d-lg-block d-md-block d-sm-none d-none">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-1">
|
||||||
|
<i class="fa-sharp fa-solid fa-quote-left"></i>
|
||||||
|
</div>
|
||||||
|
<div class="col-10">
|
||||||
|
<p>Wow, this is an impressive list! Thank
|
||||||
|
you for sharing. Our team was really
|
||||||
|
impressed by the list. Our team is happy
|
||||||
|
with the results of our project
|
||||||
|
</p>
|
||||||
|
<h5 class="fw-bold">Professional Relations Manager</h5>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-1">
|
||||||
|
<i class="fa-sharp fa-solid fa-quote-right my-2" aria-hidden="true"></i>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="swiper-slide d-flex flex-column d-xl-block d-lg-block d-md-none d-sm-none d-none">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-1">
|
||||||
|
<i class="fa-sharp fa-solid fa-quote-left"></i>
|
||||||
|
</div>
|
||||||
|
<div class="col-10">
|
||||||
|
<p>The flexibility of the tool is great. The
|
||||||
|
ability to start with strategic needs and
|
||||||
|
move to future tactical needs is the best feature
|
||||||
|
</p>
|
||||||
|
<h5 class="fw-bold">Director, New Products Planning</h5>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-1">
|
||||||
|
<i class="fa-sharp fa-solid fa-quote-right my-2" aria-hidden="true"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="swiper-pagination"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- <footer> -->
|
||||||
|
<section class="container-fluid footer" id="">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 col-sm-12 col-md-12 col-lg-12 mb-lg-4">
|
||||||
|
<div class="d-flex justify-content-end pt-3 pb-lg-5 pb-sm-4 pb-md-4 align-items-center social-widgets">
|
||||||
|
<a target="new" href="https://www.facebook.com/Aisseltechnologies"><img
|
||||||
|
src="/assets/images/new-campaign/icon_1-01.svg" alt="icon"
|
||||||
|
class="img-fluid" width="50"></a>
|
||||||
|
|
||||||
|
<a target="new" href="https://in.linkedin.com/company/aissel-technologies"><img
|
||||||
|
src=" /assets/images/new-campaign/icon_2-01-01.svg" alt="icon"
|
||||||
|
class="img-fluid" width="50"></a>
|
||||||
|
|
||||||
|
<a target="new" href="https://twitter.com/aisseltech"><img
|
||||||
|
src="/assets/images/new-campaign/icon_3-01-01-01.svg" alt="icon"
|
||||||
|
class="img-fluid" width="50"></a>
|
||||||
|
|
||||||
|
<a target="new" href="https://instagram.com/aissel_technologies"><img
|
||||||
|
src="/assets/images/new-campaign/icon_4-01-01-01-01.svg"
|
||||||
|
alt="icon" class="img-fluid" width="50"></a>
|
||||||
|
<a target="new" href="https://www.youtube.com/channel/UCvqymBnLHv8ou0AHMpSRhOg"><img
|
||||||
|
src="/assets/images/new-campaign/icon_5-01-01-01-01.svg"
|
||||||
|
alt="icon" class="img-fluid" width="50"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row copyright">
|
||||||
|
<div class="col-xs-8 col-md-7 col-lg-6 col-sm-6"></div>
|
||||||
|
<div class="col-xs-4 col-md-5 col-lg-6 col-sm-6"><p class="copy_right_text mt-2 mb-0">© 2024 Aissel Technologies Pvt. Ltd. All rights reserved</p></div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<!-- </footer> -->
|
||||||
|
|
||||||
|
<!-- Swiper JS file -->
|
||||||
|
<script src="/assets/js/swiper-bundle.min.js" defer></script>
|
||||||
|
<script defer>
|
||||||
|
if (history.scrollRestoration) {
|
||||||
|
history.scrollRestoration = 'manual';
|
||||||
|
} else {
|
||||||
|
window.onbeforeunload = function () {
|
||||||
|
window.scrollTo(0, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var swiper = new Swiper(".mySwiper", {
|
||||||
|
spaceBetween: 0,
|
||||||
|
autoplay: {
|
||||||
|
delay: 5000,
|
||||||
|
},
|
||||||
|
freeMode: true,
|
||||||
|
pagination: {
|
||||||
|
el: ".swiper-pagination",
|
||||||
|
clickable: true,
|
||||||
|
},
|
||||||
|
breakpoints: {
|
||||||
|
640: {
|
||||||
|
slidesPerView: 1,
|
||||||
|
},
|
||||||
|
768: {
|
||||||
|
slidesPerView: 2,
|
||||||
|
},
|
||||||
|
1024: {
|
||||||
|
slidesPerView: 3,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<div id="website_url" data-key={website_url}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script is:inline>
|
||||||
|
const element = document.getElementById('website_url');
|
||||||
|
const url_key = element.dataset.key;
|
||||||
|
const send_mail_url = `${url_key}/send_mail/get_demo`;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function submitCampaignForm() {
|
||||||
|
|
||||||
|
if ($("#get-campaign-demo form#getDemoForm").validate(
|
||||||
|
{
|
||||||
|
rules: {
|
||||||
|
name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 2,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 3,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
email: {
|
||||||
|
required: true,
|
||||||
|
email: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
name: {
|
||||||
|
required: "Please enter your name",
|
||||||
|
minlength: "Your name must consist of at least 2 characters",
|
||||||
|
maxlength: "Your name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: "Please enter your company name",
|
||||||
|
minlength: "Your company name must consist of at least 3 characters",
|
||||||
|
maxlength: "Your company name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
email: "Please enter a valid email address"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
).form() == false) {
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$.ajax({
|
||||||
|
type: "post",
|
||||||
|
url: send_mail_url,
|
||||||
|
data: $('#getDemoForm').serialize(),
|
||||||
|
dataType: 'json',
|
||||||
|
beforeSend: function() {
|
||||||
|
$('#getDemoForm #submit-button').text("Processing...");
|
||||||
|
$('#getDemoForm #submit-button').removeClass("w-100");
|
||||||
|
$('#getDemoForm #submit-button').css('cursor', 'wait');
|
||||||
|
},
|
||||||
|
success: function(returnData) {
|
||||||
|
$('#get-campaign-form').hide();
|
||||||
|
if (returnData.status == true) {
|
||||||
|
$('#get-campaign-demo #message').show();
|
||||||
|
$("html, body").animate({
|
||||||
|
scrollTop: 0
|
||||||
|
}, "slow");
|
||||||
|
$('#get-campaign-demo #message').html(
|
||||||
|
'<p class="get-demo-subtitle" style="font-size: 24px; color:white; text-align: center;">Thank you for contacting us.</p><p class="get-demo-subtitle" style="font-size: 16px;text-align: center; color:white;">We will get in touch with you shortly to set up a live demo.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>'
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
$('#get-campaign-demo #message').show();
|
||||||
|
$('#get-campaign-demo #message').html(
|
||||||
|
'<p class="get-demo-subtitle" style="font-size:16px;color:white;text-align: center;">Something went wrong. Please submit your details again.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
<!-- ∈∈∈ Footer ∋∋∋ -->
|
||||||
|
<!-- ∈∈∈ Cookie ∋∋∋ -->
|
||||||
|
<style type="text/css">
|
||||||
|
.cookie-block {
|
||||||
|
background-color: #3b4045 !important;
|
||||||
|
color: white;
|
||||||
|
text-align: left;
|
||||||
|
padding: 10px 0 10px 0;
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
z-index: 1111;
|
||||||
|
}
|
||||||
|
.cookie-block a{
|
||||||
|
color: white;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
.cookie-text{
|
||||||
|
font-size:14px;
|
||||||
|
font-family:asap;
|
||||||
|
line-height: 1.42857143;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function updateCookieAck(){
|
||||||
|
$("#cookie-message").hide();
|
||||||
|
$.ajax({
|
||||||
|
url: "https://www.aissel.com/aissel_policy/update_cookie_ack",
|
||||||
|
type:"post",
|
||||||
|
dataType:"json",
|
||||||
|
success: function(retDataArr){
|
||||||
|
if(retDataArr.status){
|
||||||
|
$("#cookie-block").hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<!-- <section id="cookie-block">
|
||||||
|
<div class="cookie-block">
|
||||||
|
<div class="container" id="cookie-message">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-9 col-9 px-sm-5 px-3">
|
||||||
|
<p class="cookie-text mb-0">We use cookies to understand how you use our site and to improve your experience. This includes personalizing content and advertising. To learn more, <a href="https://www.aissel.com/cookie_policy">Click here</a>. By continuing to use our site, you accept our use of cookies and revised <a href="https://www.aissel.com/privacy">Privacy Policy</a>.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-1 col-3 text-center accept-btn-css py-sm-0 py-1">
|
||||||
|
<button type="button" class="btn btn-light btn-outline-light" style="font-weight: bold; font-size:12px; padding:5px 15px; color:#333;" onclick="updateCookieAck();return false;">Accept</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section> -->
|
||||||
|
<!-- *** Template Main JS File *** -->
|
||||||
|
<script src="/assets/js/main.js" crossorigin="anonymous" defer></script>
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var base_url = 'https://www.aissel.com';
|
||||||
|
var method = 'konectar';
|
||||||
|
|
||||||
|
document.addEventListener("DOMContentLoaded", function(){
|
||||||
|
var scrollSpy = new bootstrap.ScrollSpy(document.body, {
|
||||||
|
target: '#header',
|
||||||
|
offset: 70
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div id="chatbox" data-key={data}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script is:inline>
|
||||||
|
const chat = document.getElementById('chatbox');
|
||||||
|
const key = chat.dataset.key;
|
||||||
|
eval(key);
|
||||||
|
</script>
|
||||||
|
<Fragment set:html={tag_details.before_body}/>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,580 @@
|
||||||
|
---
|
||||||
|
const website_url = import.meta.env.PUBLIC_WEBSITE_URL;
|
||||||
|
|
||||||
|
let url = Astro.url.pathname.replace(/\/$/, '');
|
||||||
|
|
||||||
|
url = url.replace(/\/(.*)/, (_, rest) => rest.replace(/\//g, '|'));
|
||||||
|
|
||||||
|
|
||||||
|
let tags = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/list-keywords/${url}`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
tags = res;
|
||||||
|
// console.log(res);
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
let tag_details = null
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/tags-manager`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
tag_details = res;
|
||||||
|
// console.log(res);
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
let data = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/chatbox`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
data = res.content;
|
||||||
|
// console.log(data);
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>{tags.title}</title>
|
||||||
|
<!-- *** Meta Tags *** -->
|
||||||
|
<!-- <meta name="robots" content="noindex, nofollow"> -->
|
||||||
|
{tags.robots_index !== "" && tags.robots_follow !== "" ? (
|
||||||
|
<meta name="robots" content={`${tags.robots_index} , ${tags.robots_follow} `} />
|
||||||
|
) : (
|
||||||
|
<meta name="robots" content="noindex, nofollow" />
|
||||||
|
)}
|
||||||
|
|
||||||
|
<meta name="description" content={tags.description} />
|
||||||
|
<meta name="keywords" content={tags.keywords} />
|
||||||
|
|
||||||
|
{tags.og_tags && Object.entries(tags.og_tags).map(([tag, value]) => (
|
||||||
|
<meta property={tag} content={value} />
|
||||||
|
))}
|
||||||
|
|
||||||
|
<link rel="canonical" href={tags.canonical} />
|
||||||
|
<!-- *** Favicons *** -->
|
||||||
|
<link href="/assets/favicon.ico" rel="icon">
|
||||||
|
<!-- *** Provider CSS Files *** -->
|
||||||
|
<link href="/assets/css/5.0/bootstrap.min.css" rel="stylesheet" defer/>
|
||||||
|
<link href="/assets/css/bootstrap-icons.css" rel="stylesheet" />
|
||||||
|
<!-- *** Template Main CSS File *** -->
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/home.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/fonts.css" rel=preload>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/responsive.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/jquery.webui-popover.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/animate.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/font-awesome/6.3.0/css/all.min.css" />
|
||||||
|
<!-- Swiper CSS file -->
|
||||||
|
<link rel="stylesheet" href="/assets/css/swiper-bundle.min.css" />
|
||||||
|
|
||||||
|
<link rel="preload" fetchpriority="high" as="image" href="/assets/images/homepage/home_image.svg" type="image/webp" />
|
||||||
|
<!-- Swiper JS file -->
|
||||||
|
<script src="/assets/js/swiper-bundle.min.js" defer></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- *** Template Main Jquery File *** -->
|
||||||
|
<script src="/assets/js/5.0/jquery.min.js" defer ></script>
|
||||||
|
<!-- *** Vendor JS Files *** -->
|
||||||
|
<script src="/assets/js/5.0/popper.min.js" crossorigin="anonymous" defer></script>
|
||||||
|
<script src="/assets/js/5.0/bootstrap.min.js" crossorigin="anonymous" defer></script>
|
||||||
|
<!-- *** Validation Script *** -->
|
||||||
|
<script src="/assets/js/jquery.validate.js" crossorigin="anonymous" defer></script>
|
||||||
|
<!-- *** Extra Script *** -->
|
||||||
|
<script src="/assets/js/jquery.imageslider.js" defer></script>
|
||||||
|
<script src="/assets/js/jquery.webui-popover.js" defer></script>
|
||||||
|
|
||||||
|
<!-- <script src="/assets/js/CKEditor5/ckeditor5.js" defer></script> -->
|
||||||
|
|
||||||
|
<Fragment set:html={tag_details.before_head}/>
|
||||||
|
</head>
|
||||||
|
<body id="body">
|
||||||
|
<Fragment set:html={tag_details.initial_body_content}/>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<!-- <div class="analyst-topbar">
|
||||||
|
<button id="add-keyword-button" class="add-keyword-button" onClick="keywordsModel(); return false;">Add Keywords</button>
|
||||||
|
</div>
|
||||||
|
-->
|
||||||
|
<style>
|
||||||
|
.analyst-topbar{
|
||||||
|
position: absolute;
|
||||||
|
left: 269px !important;
|
||||||
|
top: 20px !important;
|
||||||
|
z-index: 1025 !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<header id="header" class="campaign-header align-items-center sticky-top">
|
||||||
|
|
||||||
|
<section id="header-container" class="">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 col-6 nav-section">
|
||||||
|
<div class="navbar-section container-fluid" style="margin-top: 12px;margin-bottom: 6px;">
|
||||||
|
<div class="row">
|
||||||
|
|
||||||
|
<nav class="navbar fixed-top justify-content-end pt-1">
|
||||||
|
<div class="col-lg-6 col-md-5 col-4 campaign-header-logo mb-2">
|
||||||
|
<a href="/" class="logo"><img class="p-0 img-fluid" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" alt="Konectar Logo"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-7 col-8 d-flex justify-content-end align-items-center">
|
||||||
|
<span class="px-lg-4 px-md-4 px-sm-4">
|
||||||
|
<a href="mailto:sales@aissel.com"><img alt="Aissel Email" class="contact-icon img-fluid"
|
||||||
|
src="/assets/images/envelope5.png" width="30px;"></a>
|
||||||
|
<a class="support_email_id"
|
||||||
|
href="mailto:sales@aissel.com">sales@aissel.com
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
<span class="px-lg-4 px-md-4 px-sm-4">
|
||||||
|
<a href="tel:+13479668181,1"><img alt="Aissel Phone" class="contact-icon img-fluid"
|
||||||
|
src="/assets/images/telephone.png" width="30px;"></a>
|
||||||
|
<a class="footer_phone" href="tel:+13479668181,1">+1 (347) 966-8181 X 1 </a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</header>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" href="/assets/css/hcp_management.css">
|
||||||
|
<div id="hcp-engagement-main" class="hcp-engagement">
|
||||||
|
<section class="campaign2-section1" id="campaign2-section1">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row content-section justify-content-start align-items-end">
|
||||||
|
<div class="col-lg-7 col-md-7 col-7">
|
||||||
|
<div class="konectar-logo pb-3 ms-lg-4 ms-3">
|
||||||
|
<img class="img-fluid" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="35%" height="auto" alt="Konectar Logo ">
|
||||||
|
</div>
|
||||||
|
<div class="row main-text mb-lg-3 mb-md-3 mb-2 ms-lg-4 ms-3">
|
||||||
|
<p class="mb-0 py-lg-0 py-1" style="">The Game-Changing Solution for Seamless HCP Management!</p>
|
||||||
|
</div>
|
||||||
|
<div class="row main-text mb-2 ms-lg-4 ms-3">
|
||||||
|
<p class="mb-0 py-lg-0 py-1">Simplify Your HCP Management Journey with konectar!</p>
|
||||||
|
</div>
|
||||||
|
<div class="sub-text ms-lg-4 ms-3 pt-lg-4 pt-md-4 pt-sm-2 pt-2">
|
||||||
|
<p class="mb-0 py-0 pt-2">Say goodbye to endless hours spent on processes to - identify and engage
|
||||||
|
your HCPs (Healthcare Professionals). konectar, a robust AI-Powered
|
||||||
|
Platform, is set to revolutionize the way you approach HCP Management
|
||||||
|
and boost your business success!
|
||||||
|
</p>
|
||||||
|
<p class="mb-0 py-0 pt-2">
|
||||||
|
konectar's advanced features help you efficiently find, nurture,
|
||||||
|
and engage HCPs for advisory boards, speaker programs, clinical trials, brand launches,
|
||||||
|
educational initiatives, and more. So you can be on your path to unlocking new heights of success
|
||||||
|
in the Life Sciences industry!
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="get-campaign2-demo" class="col-lg-5 col-md-5 col-12 ps-lg-4 px-3 mt-lg-2 pt-lg-4 pt-md-5">
|
||||||
|
<!-- <div class="form-header text-center pt-lg-5 pt-4">
|
||||||
|
<h4 class="campaign2-form-header-text pt-lg-2 pb-2">Request a Demo</h4>
|
||||||
|
</div> -->
|
||||||
|
<div id="message"></div>
|
||||||
|
<div class="campaign2-form-container pt-4 mx-auto">
|
||||||
|
|
||||||
|
<div class="form-header text-center pt-lg-0 pt-0">
|
||||||
|
<h4 class="campaign2-form-header-text pt-lg-0 pb-0">Request a Demo</h4>
|
||||||
|
</div>
|
||||||
|
<form action="" method="post" id="getDemoForm" class="request-demo-form pt-lg-2">
|
||||||
|
<div class="mb-lg-4 mb-md-2 mb-2 row justify-content-center">
|
||||||
|
<label class="col-lg-1 col-md-1 col-sm-2 offset-sm-1 p-lg-0 m-md-0 m-lg-0 col-1 col-form-label d-flex justify-content-lg-end"><span
|
||||||
|
class="mandatory">*</span></label>
|
||||||
|
<div class="col-lg-10 col-md-9 col-sm-7 col-9 pe-lg-4">
|
||||||
|
<input class="form-control" type="text" name="name" id="full_name"
|
||||||
|
placeholder="Full Name" aria-label="Enter your Full name" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-lg-4 mb-md-2 mb-2 row justify-content-center">
|
||||||
|
<label
|
||||||
|
class="col-lg-1 col-md-1 col-sm-2 offset-sm-1 p-lg-0 m-md-0 m-lg-0 col-1 col-form-label d-flex justify-content-lg-end"><span
|
||||||
|
class="mandatory">*</span></label>
|
||||||
|
<div class="col-lg-10 col-md-9 col-sm-7 col-9 pe-lg-4">
|
||||||
|
<input class="form-control" type="text" name="company_name" id="company_name"
|
||||||
|
placeholder="Company Name" aria-label="Enter your Company name" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-lg-4 mb-md-2 mb-2 row justify-content-center">
|
||||||
|
<label
|
||||||
|
class="col-lg-1 col-md-1 col-sm-2 offset-sm-1 p-lg-0 m-md-0 m-lg-0 col-1 col-form-label d-flex justify-content-lg-end"><span
|
||||||
|
class="mandatory">*</span></label>
|
||||||
|
<div class="col-lg-10 col-md-9 col-sm-7 col-9 pe-lg-4">
|
||||||
|
<input class="form-control" type="text" name="email" id="email"
|
||||||
|
placeholder="Business Email" aria-label="Enter your Business Email" required />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-lg-1 mb-md-1 mb-2 row justify-content-center">
|
||||||
|
<label
|
||||||
|
class="col-lg-1 col-md-1 col-sm-2 offset-sm-1 p-lg-0 m-md-0 m-lg-0 col-1 col-form-label d-flex justify-content-lg-end"></label>
|
||||||
|
<div class="mb-lg-4 col-lg-10 col-md-9 col-sm-7 col-9 pe-lg-4">
|
||||||
|
<input class="form-control" type="text" name="phone_number" id="phone_number"
|
||||||
|
placeholder="Business Phone number"
|
||||||
|
aria-label="Enter your Business Phone Number" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="py-lg-0 py-2 row">
|
||||||
|
<div class="col-lg-4 offset-lg-4 col-md-6 col-sm-7 col-5 text-center button-center mx-auto">
|
||||||
|
<button type="button" onClick="submitCampaign2Form(); return false;" name="submit" id="submit-button" value="Submit" class="btn get-submit-btn mb-lg-3 w-100 gAnalytics_getADemoSubmitForm">Submit</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row pb-5 social-video-section d-flex justify-content-around">
|
||||||
|
<div class="col-lg-4 col-md-4 col-12 ms-lg-4 text-lg-center">
|
||||||
|
<iframe class="responsive-iframe" width="420" height="300" src="https://www.youtube.com/embed/2V9LS18m_bs"
|
||||||
|
title="YouTube video player" frameborder="0"
|
||||||
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
||||||
|
allowfullscreen></iframe>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-5 col-12 d-flex align-items-center">
|
||||||
|
<p class="social-video-content">konectar's advanced features help you to efficiently find, nurture,
|
||||||
|
and engage HCPs for advisory boards, speaker programs, clinical
|
||||||
|
trials, brand launches, educational initiatives, and more. So you
|
||||||
|
can be on your path to unlocking new heights of success in the
|
||||||
|
Life Sciences industry!
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="campaign2-section2" id="campaign2-section2">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row header-text text-center pt-4">
|
||||||
|
<h2>Why Choose konectar?</h2>
|
||||||
|
</div>
|
||||||
|
<div class="row px-lg-3 py-4 d-flex justify-content-around">
|
||||||
|
<div class="col-lg-6 col-12 my-auto">
|
||||||
|
<ul style="color:white;">
|
||||||
|
<li>
|
||||||
|
<span class="text-white"><b>Streamlined Efficiency</b></span>
|
||||||
|
<p class="text-white">konectar's intuitive features allow you to access a vast pool of healthcare experts' profiles and
|
||||||
|
tap hcp influence networks to amplify the outreach efforts.
|
||||||
|
The centralized dashboard and user-friendly navigation enable
|
||||||
|
life sciences teams to access important metrics even while on the go!
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<span class="text-white"><b>Data-Driven Insights</b></span>
|
||||||
|
<p class="text-white">This hcp platform provides actionable healthcare data insights on medical experts' professional activities
|
||||||
|
for informed decision-making. konectar's sentiment analysis AI-tool offers real-time insights into public perception of HCPs
|
||||||
|
to understand their care quality and expertise.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<span class="text-white"><b>Flexible and Scalable</b></span>
|
||||||
|
<p class="text-white">konectar adapts to your needs. It empowers your workforce by seamlessly integrating into your existing legacy system,
|
||||||
|
allowing them to access both legacy and new system data and gain comprehensive insights.
|
||||||
|
The best part is that it is flexible, scalable, and caters to organizations of all sizes.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<span class="text-white"><b>Access from multiple devices</b></span>
|
||||||
|
<p class="text-white">This robust and compliant HCP Management Platform can
|
||||||
|
be easily accessed on iPads, smartphones, and desktops, regardless of
|
||||||
|
your location or device preferences.konectar is your go-to solution for obtaining healthcare data insights and driving success in the competitive healthcare environment.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-12 my-auto">
|
||||||
|
<div>
|
||||||
|
<img class="img-fluid" src="/assets/images/new-campaign/campaign-img.svg" width="100%" alt="HCP Platform">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="campaign2-section3" id="campaign2-section3">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row konectar-success-content">
|
||||||
|
<div class="col-lg-8 col-10"><p class="ps-lg-5 py-4">Experience the konectar advantage and
|
||||||
|
revolutionize your approach to HCP Management!
|
||||||
|
</p></div>
|
||||||
|
</div>
|
||||||
|
<div class="row mb-3">
|
||||||
|
<div class="col-lg-5 col-6 ms-lg-4">
|
||||||
|
<img class="img-fluid" src="/assets/images/new-campaign/booster-img.png" width="100%" alt="Business Booster">
|
||||||
|
<div class="mx-auto pt-3 text-center">
|
||||||
|
<a href="#" class="my-lg-3 btn-get-demo mx-auto">Request a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-6 booster-img text-center">
|
||||||
|
<img class="img-fluid" src="/assets/images/new-campaign/booster-img-2.png" width="60%" height="" alt="Booster Image">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- <footer> -->
|
||||||
|
<section class="container-fluid footer" id="">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 col-sm-12 col-md-12 col-lg-12 mb-lg-4">
|
||||||
|
<div class="d-flex justify-content-end pt-3 pb-lg-4 pb-md-4 pd-sm-5 align-items-center social-widgets">
|
||||||
|
<a target="new" href="https://www.facebook.com/Aisseltechnologies"><img src="/assets/images/new-campaign/icon_1-01.svg" alt="icon"
|
||||||
|
class="img-fluid" width="50"></a>
|
||||||
|
|
||||||
|
<a target="new" href="https://in.linkedin.com/company/aissel-technologies"><img src=" /assets/images/new-campaign/icon_2-01-01.svg" alt="icon"
|
||||||
|
class="img-fluid" width="50"></a>
|
||||||
|
|
||||||
|
<a target="new" href="https://twitter.com/aisseltech"><img src="/assets/images/new-campaign/icon_3-01-01-01.svg" alt="icon"
|
||||||
|
class="img-fluid" width="50"></a>
|
||||||
|
|
||||||
|
<a target="new" href="https://instagram.com/aissel_technologies"><img src="/assets/images/new-campaign/icon_4-01-01-01-01.svg" alt="icon"
|
||||||
|
class="img-fluid" width="50"></a>
|
||||||
|
<a target="new" href="https://www.youtube.com/channel/UCvqymBnLHv8ou0AHMpSRhOg"><img src="/assets/images/new-campaign/icon_5-01-01-01-01.svg" alt="icon"
|
||||||
|
class="img-fluid" width="50"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row copyright">
|
||||||
|
<div class="col-xs-8 col-md-7 col-lg-6 col-sm-6"></div>
|
||||||
|
<div class="col-xs-4 col-md-5 col-lg-6 col-sm-6"><p class="copy_right_text mt-2 mb-0">© 2024 Aissel Technologies Pvt. Ltd. All rights reserved</p></div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<!-- </footer> -->
|
||||||
|
<div id="website_url" data-key={website_url}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script is:inline>
|
||||||
|
const element = document.getElementById('website_url');
|
||||||
|
const url_key = element.dataset.key;
|
||||||
|
const send_mail_url = `${url_key}/send_mail/get_demo`;
|
||||||
|
|
||||||
|
if (history.scrollRestoration) {
|
||||||
|
history.scrollRestoration = 'manual';
|
||||||
|
} else {
|
||||||
|
window.onbeforeunload = function () {
|
||||||
|
window.scrollTo(0, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function submitCampaign2Form() {
|
||||||
|
|
||||||
|
if ($("#get-campaign2-demo form#getDemoForm").validate(
|
||||||
|
{
|
||||||
|
rules: {
|
||||||
|
name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 2,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 3,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
email: {
|
||||||
|
required: true,
|
||||||
|
email: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
name: {
|
||||||
|
required: "Please enter your name",
|
||||||
|
minlength: "Your name must consist of at least 2 characters",
|
||||||
|
maxlength: "Your name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: "Please enter your company name",
|
||||||
|
minlength: "Your company name must consist of at least 3 characters",
|
||||||
|
maxlength: "Your company name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
email: "Please enter a valid email address"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
).form() == false) {
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$.ajax({
|
||||||
|
type: "post",
|
||||||
|
url: send_mail_url,
|
||||||
|
data: $('#getDemoForm').serialize(),
|
||||||
|
dataType: 'json',
|
||||||
|
beforeSend: function() {
|
||||||
|
$('#getDemoForm #submit-button').text("Processing...");
|
||||||
|
$('#getDemoForm #submit-button').attr('disabled', true);
|
||||||
|
},
|
||||||
|
success: function(returnData) {
|
||||||
|
$('.campaign2-form-container').hide();
|
||||||
|
if (returnData.status == true) {
|
||||||
|
$('#get-campaign2-demo #message').show();
|
||||||
|
$("html, body").animate({
|
||||||
|
scrollTop: 0
|
||||||
|
}, "slow");
|
||||||
|
$('#get-campaign2-demo #message').html(
|
||||||
|
'<p class="get-demo-subtitle maintitle" style="">Thank you for contacting us.</p><p class="get-demo-subtitle subtitle" style=" ">We will get in touch with you shortly to set up a live demo.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>'
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
$('#get-campaign2-demo #message').show();
|
||||||
|
$('#get-campaign2-demo#message').html(
|
||||||
|
'<p class="get-demo-subtitle" style="font-size:16px;color:white;text-align: center;">Something went wrong. Please submit your details again.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
<!-- ∈∈∈ Footer ∋∋∋ -->
|
||||||
|
<!-- ∈∈∈ Cookie ∋∋∋ -->
|
||||||
|
<style type="text/css">
|
||||||
|
.cookie-block {
|
||||||
|
background-color: #3b4045 !important;
|
||||||
|
color: white;
|
||||||
|
text-align: left;
|
||||||
|
padding: 10px 0 10px 0;
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
z-index: 1111;
|
||||||
|
}
|
||||||
|
.cookie-block a{
|
||||||
|
color: white;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
.cookie-text{
|
||||||
|
font-size:14px;
|
||||||
|
font-family:asap;
|
||||||
|
line-height: 1.42857143;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function updateCookieAck(){
|
||||||
|
$("#cookie-message").hide();
|
||||||
|
$.ajax({
|
||||||
|
url: "/aissel_policy/update_cookie_ack",
|
||||||
|
type:"post",
|
||||||
|
dataType:"json",
|
||||||
|
success: function(retDataArr){
|
||||||
|
if(retDataArr.status){
|
||||||
|
$("#cookie-block").hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<!-- <section id="cookie-block">
|
||||||
|
<div class="cookie-block">
|
||||||
|
<div class="container" id="cookie-message">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-9 col-9 px-sm-5 px-3">
|
||||||
|
<p class="cookie-text mb-0">We use cookies to understand how you use our site and to improve your experience. This includes personalizing content and advertising. To learn more, <a href="/cookie_policy">Click here</a>. By continuing to use our site, you accept our use of cookies and revised <a href="/privacy">Privacy Policy</a>.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-1 col-3 text-center accept-btn-css py-sm-0 py-1">
|
||||||
|
<button type="button" class="btn btn-light btn-outline-light" style="font-weight: bold; font-size:12px; padding:5px 15px; color:#333;" onclick="updateCookieAck();return false;">Accept</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section> -->
|
||||||
|
<!-- ∈∈∈ Keywords model pop up ∋∋∋ -->
|
||||||
|
<div class="modal custom-model fade" id="keywordModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
||||||
|
<div class="modal-dialog modal-lg"></div>
|
||||||
|
</div>
|
||||||
|
<!-- *** Template Main JS File *** -->
|
||||||
|
<script src="/assets/js/main.js" crossorigin="anonymous" defer></script>
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var base_url = '';
|
||||||
|
var method = 'konectar';
|
||||||
|
|
||||||
|
document.addEventListener("DOMContentLoaded", function(){
|
||||||
|
var scrollSpy = new bootstrap.ScrollSpy(document.body, {
|
||||||
|
target: '#header',
|
||||||
|
offset: 70
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
function keywordsModel(){
|
||||||
|
$('#keywordModal').modal('show');
|
||||||
|
$('#keywordModal .modal-dialog').load(base_url+"/settings/load_form", {"url":"hcp-management/konectar"});
|
||||||
|
}
|
||||||
|
|
||||||
|
$(document).on("click", "#save-content-button", function(){
|
||||||
|
var data = "id="+0;
|
||||||
|
var url = '/konectar/store_content';
|
||||||
|
$.ajax({
|
||||||
|
url: url,
|
||||||
|
type:"post",
|
||||||
|
dataType:"json",
|
||||||
|
data:data,
|
||||||
|
success: function(retData){
|
||||||
|
if(retData){
|
||||||
|
|
||||||
|
}else{
|
||||||
|
alert("Something wrong, Please submit details onceagain");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div id="chatbox" data-key={data}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script is:inline>
|
||||||
|
const chat = document.getElementById('chatbox');
|
||||||
|
const key = chat.dataset.key;
|
||||||
|
eval(key);
|
||||||
|
</script>
|
||||||
|
<Fragment set:html={tag_details.before_body}/>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,698 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
const website_url = import.meta.env.PUBLIC_WEBSITE_URL;
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Aissel Technologies">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<style>
|
||||||
|
#get-demo .get-demo-block {
|
||||||
|
height:85%;
|
||||||
|
top: 35px;
|
||||||
|
width:85%;
|
||||||
|
}
|
||||||
|
@media(max-width:1160px) and (min-width:767px){
|
||||||
|
iframe.py-2.embed-responsive-item {
|
||||||
|
width: 100%;
|
||||||
|
height: 250px;
|
||||||
|
margin-top: 10%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media(max-width:767px) {
|
||||||
|
.iframe-container, iframe.py-2.embed-responsive-item {
|
||||||
|
width: 100%;
|
||||||
|
height: 25.5rem; /* 22.5rem */
|
||||||
|
padding: 5px;
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media(max-width: 768px){
|
||||||
|
.modal-dialog {
|
||||||
|
max-width: 60%;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
@media(max-width:567px){
|
||||||
|
.modal-dialog{
|
||||||
|
max-width:70%;
|
||||||
|
margin:0 auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.modal-header .btn-close{
|
||||||
|
opacity: 0.75;
|
||||||
|
font-size: 0.7rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-header .btn-close:hover{
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div id="campaign-main" class="content">
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="kolm-band-one">
|
||||||
|
<div class="container-fluid kolm-band-one">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-6 col-12">
|
||||||
|
<div class="row ps-lg-5 pt-lg-5">
|
||||||
|
<div class="col-lg-10 kolm-content-block text-center text-sm-start">
|
||||||
|
<h3 class="kolm-content-block-title">Key Opinion Leader <br> Management <br class="d-sm-block d-none">Platform for Life Sciences</h3>
|
||||||
|
<p class="kolm-content-block-text">Discover, Profile and Engage the right Healthcare Professionals</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row ps-lg-5 pt-lg-2 pb-lg-5">
|
||||||
|
<div class="col-lg-10 kolmband px-lg-4 pb-4">
|
||||||
|
<div class="row icon-box py-2">
|
||||||
|
<div class="col-md-5 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img class="" src="/assets/images/homepage/icon_payments.svg" alt="Payments Icon" width="45px" height="35px" >
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<span class="align-middle">80 Million+</span>
|
||||||
|
<p class="align-middle mb-0">HCP Payments</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-5 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_clinical.svg" alt="Clinical Icon" width="45px" height="35px" >
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<span class="align-middle">479,000+</span>
|
||||||
|
<p class="align-middle mb-0">Clinical Studies</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row icon-box py-2">
|
||||||
|
<div class="col-md-5 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_article.svg" alt="Article Icon" width="45px" height="35px" >
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<span class="align-middle">35 Million+</span>
|
||||||
|
<p class="align-middle mb-0">Medical Journal Articles</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-md-5 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_sanction.svg" alt="Sanction Icon" width="45px" height="35px" >
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<span class="align-middle">200,000+</span>
|
||||||
|
<p class="align-middle mb-0">Sanctions</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row icon-box py-2">
|
||||||
|
<div class="col-md-5 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_patents.svg" alt="Patents Icon" width="45px" height="35px" >
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<span class="align-middle">20 Million+</span>
|
||||||
|
<p class="align-middle mb-0">Patents</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-md-5 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_events.svg" alt="Events Icon" width="45px" height="35px" >
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<span class="align-middle">150,000+</span>
|
||||||
|
<p class="align-middle mb-0">Global Medical Events</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row icon-box py-2">
|
||||||
|
<div class="col-md-5 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_grants.svg" alt="Grants Icon" width="45px" height="35px" >
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<span class="align-middle">1.4 Million+</span>
|
||||||
|
<p class="align-middle mb-0">Grants</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-5 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_life_science.svg" alt="Life Science Icon" width="45px" height="35px" >
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<span class="align-middle">30,000+</span>
|
||||||
|
<p class="align-middle mb-0">Life Science Journals</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Kolm band form -->
|
||||||
|
<div id="get-demo" class="campaign-demo-form col-lg-6 col-sm-6 offset-lg-0 offset-md-0 offset-sm-0 parallax_with_opacity my-lg-5 my-md-0 my-sm-0">
|
||||||
|
<div class="get-demo-block"></div>
|
||||||
|
<div class="row text-center">
|
||||||
|
<div class="col-lg-9 col-md-10 col-sm-12 col-12 py-2 py-sm-5">
|
||||||
|
<div id="message"></div>
|
||||||
|
<div class="get-demo-form">
|
||||||
|
<form action="" method="post" id="getDemoForm" class="request-demo-form">
|
||||||
|
<input type="hidden" id="url" name="url" value="home/campaign" />
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<div class="col-lg-9 offset-lg-3 col-md-9 offset-md-1 col-sm-12">
|
||||||
|
<h3 class="pb-3 pt-3 get-demo-title" style="text-align:left">Get a Live Demo</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row"><br>
|
||||||
|
<label class="col-lg-2 col-md-3 offset-md-1 col-sm-3 col-3 col-form-label d-flex justify-content-lg-end">Name<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-lg-9 col-md-8 col-sm-9 col-9">
|
||||||
|
<input class="form-control" type="text" name="name" id="full_name" placeholder="Full Name" aria-label="Enter your Full name" required/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row ">
|
||||||
|
<label class="col-lg-2 col-md-3 offset-md-1 col-sm-3 col-3 col-form-label d-flex justify-content-lg-end">Company<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-lg-9 col-md-8 col-sm-9 col-9">
|
||||||
|
<input class="form-control" type="text" name="company_name" id="company_name" placeholder="Company Name" aria-label="Enter your Company name" required/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label class="col-lg-2 col-md-3 offset-md-1 col-sm-3 col-3 col-form-label d-flex justify-content-lg-end">Email<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-lg-9 col-md-8 col-sm-9 col-9">
|
||||||
|
<input class="form-control" type="text" name="email" id="email" placeholder="Business Email" aria-label="Enter your Business Email" required/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label class="col-lg-2 col-md-3 offset-md-1 col-sm-3 col-3 col-form-label d-flex justify-content-lg-end">Phone</label>
|
||||||
|
<div class="col-lg-9 col-md-8 col-sm-9 col-9">
|
||||||
|
<input class="form-control" type="text" name="phone_number" id="phone_number" placeholder="Business Phone number" aria-label="Enter your Business Phone Number" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<div class="col-lg-9 offset-lg-3 col-md-8 offset-md-4 col-sm-9 offset-sm-3 col-12 text-center">
|
||||||
|
<!-- removed=demo_button -->
|
||||||
|
<button type="button" onClick="submitForm(); return false;" name="submit" id="submit-button" value="Submit" class="btn get-submit-btn get-demo-btn w-100 gAnalytics_getADemoSubmitForm">Request a demo</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Instance Listing Section -->
|
||||||
|
<section id="campaign-konectar-band">
|
||||||
|
<div class="container campaign-konectar-band py-4 pb-5">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 pt-4 pr-0">
|
||||||
|
<img src="/assets/images/campaign/Logo.svg" class="logo-image" width="220px" alt="">
|
||||||
|
</div>
|
||||||
|
<div class="col-12 konectar-band-text">
|
||||||
|
<p class="mb-0">KOL Management Platform</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 konectar-band-subtext">
|
||||||
|
<p class="pb-lg-3" style="font-size: 20px;">Get connected to over <strong>1 Million</strong> Medical Experts through our AI powered Platform</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- Columns start at 50% wide on mobile and bump up to 33.3% wide on desktop -->
|
||||||
|
<div id="konectar-instance-list" class="row text-center pt-4 pb-4 konectar-instance-list">
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 flex-lg-column align-items-center">
|
||||||
|
<div class="konectar-instance-icon py-3">
|
||||||
|
<div class="konectar-instance-icon-bg">
|
||||||
|
<a href="/konectar/oncology"><img src="/assets/images/campaign/Oncology.svg" alt=""></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title pt-3 pb-3">
|
||||||
|
<a href="/konectar/oncology"><span>Oncology</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 flex-lg-column align-items-center">
|
||||||
|
<div class="konectar-instance-icon py-3">
|
||||||
|
<div class="konectar-instance-icon-bg">
|
||||||
|
<a href="/konectar/cns"><img src="/assets/images/campaign/CNS.svg" alt=""></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title pt-3 pb-3">
|
||||||
|
<a href="/konectar/cns"><span>CNS</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 flex-lg-column align-items-center">
|
||||||
|
<div class="konectar-instance-icon py-3">
|
||||||
|
<div class="konectar-instance-icon-bg">
|
||||||
|
<a href="/konectar/cardiology"><img src="/assets/images/campaign/Cardiology.svg" alt=""></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title pt-3 pb-3">
|
||||||
|
<a href="/konectar/cardiology"><span>Cardiology</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 flex-lg-column align-items-center">
|
||||||
|
<div class="konectar-instance-icon py-3">
|
||||||
|
<div class="konectar-instance-icon-bg">
|
||||||
|
<a href="/konectar/oralhealth"><img src="/assets/images/campaign/Oral_Health.svg" alt=""></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title pt-3 pb-3">
|
||||||
|
<a href="/konectar/oralhealth"><span>Oral Health</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 flex-lg-column align-items-center">
|
||||||
|
<div class="konectar-instance-icon py-3">
|
||||||
|
<div class="konectar-instance-icon-bg">
|
||||||
|
<a href="/konectar/endocrinology"><img src="/assets/images/campaign/Endocrinology.svg" alt=""></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title pt-3 pb-3">
|
||||||
|
<a href="/konectar/endocrinology"><span>Endocrinology</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 flex-lg-column align-items-center">
|
||||||
|
<div class="konectar-instance-icon py-3">
|
||||||
|
<div class="konectar-instance-icon-bg">
|
||||||
|
<a href="/konectar/veterinary"><img src="/assets/images/campaign/Veterinary.svg" alt=""></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title pt-3 pb-3">
|
||||||
|
<a href="/konectar/veterinary"><span>Veterinary</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 flex-lg-column align-items-center">
|
||||||
|
<div class="new_tag animated infinite zoomIn">New</div>
|
||||||
|
|
||||||
|
<div class="konectar-instance-icon py-3 pt-1">
|
||||||
|
<div class="konectar-instance-icon-bg">
|
||||||
|
<a href="/konectar/gastroenterology"><img src="/assets/images/campaign/Gastroenterology.svg" alt=""></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title pt-3 pb-3">
|
||||||
|
<a href="/konectar/gastroenterology"><span>Gastroenterology</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 flex-lg-column align-items-center">
|
||||||
|
<div class="new_tag animated infinite zoomIn">New</div>
|
||||||
|
|
||||||
|
<div class="konectar-instance-icon py-3 pt-1">
|
||||||
|
<div class="konectar-instance-icon-bg">
|
||||||
|
<a href="/konectar/painmedicine"><img src="/assets/images/campaign/PainMedicine.svg" alt=""></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title pt-3 pb-3">
|
||||||
|
<a href="/konectar/painmedicine"><span>Pain Medicine</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 flex-lg-column align-items-center">
|
||||||
|
<div class="new_tag animated infinite zoomIn">New</div>
|
||||||
|
|
||||||
|
<div class="konectar-instance-icon py-3 pt-1">
|
||||||
|
<div class="konectar-instance-icon-bg">
|
||||||
|
<a href="/konectar/dermatology"><img src="/assets/images/campaign/Dermatology.svg" alt=""></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title pt-3 pb-3">
|
||||||
|
<a href="/konectar/dermatology"><span>Dermatology</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 flex-lg-column align-items-center">
|
||||||
|
<div class="new_tag animated infinite zoomIn">New</div>
|
||||||
|
|
||||||
|
<div class="konectar-instance-icon py-3 pt-1">
|
||||||
|
<div class="konectar-instance-icon-bg">
|
||||||
|
<a href="/konectar/nephrology"><img src="/assets/images/campaign/Nephrology.svg" alt=""></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title pt-3 pb-3">
|
||||||
|
<a href="/konectar/nephrology"><span>Nephrology</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 flex-lg-column align-items-center">
|
||||||
|
<div class="new_tag animated infinite zoomIn">New</div>
|
||||||
|
|
||||||
|
<div class="konectar-instance-icon py-3 pt-1">
|
||||||
|
<div class="konectar-instance-icon-bg">
|
||||||
|
<a href="/konectar/eyecare"><img src="/assets/images/campaign/EyeCare.svg" alt=""></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title pt-3 pb-3">
|
||||||
|
<a href="/konectar/eyecare"><span>Eye Care</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Virtual Engagement and Social Media Section -->
|
||||||
|
<section id="konectar-sub-product">
|
||||||
|
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12 ksp-virtual-engage ">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-11 offset-lg-1 offset-0 col-12 ">
|
||||||
|
<div class="iframe-container">
|
||||||
|
<iframe width="520" height="310" class="py-2 embed-responsive-item" title="YouTube video player" frameborder="0"
|
||||||
|
src="https://www.youtube.com/embed/2V9LS18m_bs" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12 ksp-social py-5">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-md-12 col-12 ksp-social-content" style="padding-left:70px;">
|
||||||
|
<p class=""><i>AI Powered Platform for <br/> connecting you to the right <br/> Digital Opinion Leaders.</i></p>
|
||||||
|
<div class="d-none d-lg-block">
|
||||||
|
<img src="/assets/images/konectar/veterinary/konectar_social.png" width="95%" alt="konectar Social">
|
||||||
|
</div>
|
||||||
|
<div class="d-block d-lg-none text-center">
|
||||||
|
<img src="/assets/images/homepage/konectar_social_image.png" class="img-fluid konectar_social_mscreen" alt="konectar Social">
|
||||||
|
<img src="/assets/images/konectar/veterinary/konectar_social.png" class="konectar_social_veterinary_img img-fluid konectar_social_mlogo" alt="konectar Social">
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="custom-text-center"><a class="learn-more" href="/konectar/social" role="button">Learn More</a></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-12 d-flex align-items-center d-none d-lg-block ">
|
||||||
|
<img src="/assets/images/homepage/konectar_social_image.png" width="250px" height="140px" alt="konectar Social">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Konectar HCP Management -->
|
||||||
|
<section id="konectar-hcp-band" class="campaign-konectar-hcp-band">
|
||||||
|
<div class="container konectar-hcp-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 text-center py-lg-4 pt-4">
|
||||||
|
<h3 class="campaign-hcp-title">konectar <span class="my-3">KOL M</span>anagement</h3>
|
||||||
|
<p class="campaign-hcp-subtext">One stop solution for your entire HCP Management Cycle</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row text-center pb-5">
|
||||||
|
<div class="col-lg-3 col-md-4 col-6 mt-4 d-flex flex-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-3">
|
||||||
|
<img src="/assets/images/campaign/KOL_Identification.png" alt="" width="75px">
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-2">
|
||||||
|
<label class="hcp-management-title fw-bold">KOL Identification</label>
|
||||||
|
<p class="hcp-management-subtext">Identify and rank the experts by tracking HCP activity over a period of time.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-4 col-6 mt-4 d-flex flex-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-3">
|
||||||
|
<img src="/assets/images/campaign/KOL_Profiling.jpg" alt="" width="75px">
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-2">
|
||||||
|
<label class="hcp-management-title fw-bold">KOL Profiling</label>
|
||||||
|
<p class="hcp-management-subtext">Accurate, Comprehensive & Up-to-date profiles of Healthcare Professionals.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-4 col-6 mt-4 d-flex flex-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-3">
|
||||||
|
<img src="/assets/images/campaign/KOL_Engagement.png" alt="" width="75px">
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-2">
|
||||||
|
<label class="hcp-management-title fw-bold" >KOL Engagement</label>
|
||||||
|
<p class="hcp-management-subtext">Engage with your HCPs with virtual engagement and manage all your HCP Communications.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-4 col-6 mt-4 d-flex flex-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-3">
|
||||||
|
<img src="/assets/images/campaign/Digital_Opinion_Leaders.png" alt="" width="75px">
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-2">
|
||||||
|
<label class="hcp-management-title fw-bold" >Digital Opinion Leaders</label>
|
||||||
|
<p class="hcp-management-subtext">Discover the Digital Opinion Leaders and understand their social media influence.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-4 col-6 mt-4 d-flex flex-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-3">
|
||||||
|
<img src="/assets/images/campaign/KOL_Influence_Mapping.jpg" alt="" width="75px">
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-2">
|
||||||
|
<label class="hcp-management-title fw-bold" >KOL Influence Mapping</label>
|
||||||
|
<p class="hcp-management-subtext">Understand the KOL Collaborations and their Influence in the medical community.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-4 col-6 mt-4 d-flex flex-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-3">
|
||||||
|
<img src="/assets/images/campaign/KOL_Activity_Tracking.png" alt="" width="75px">
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-2">
|
||||||
|
<label class="hcp-management-title fw-bold" >KOL Activity Tracking</label>
|
||||||
|
<p class="hcp-management-subtext">Track and manage the interactions, payments & contracts with your HCPs effectively.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-4 col-6 mt-4 d-flex flex-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-3">
|
||||||
|
<img src="/assets/images/campaign/HCP_Segmentation.png" alt="" width="75px">
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-2">
|
||||||
|
<label class="hcp-management-title fw-bold" >HCP Segmentation</label>
|
||||||
|
<p class="hcp-management-subtext">Segment your HCPs based on their subject matter expertise into different tiers.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-4 col-6 mt-4 d-flex flex-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-3">
|
||||||
|
<img src="/assets/images/campaign/CRM_Integration.png" alt="" width="75px">
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-2">
|
||||||
|
<label class="hcp-management-title fw-bold" >CRM Integration</label>
|
||||||
|
<p class="hcp-management-subtext">konectar seamlessly integrates with your existing CRM applications.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Modal Form -->
|
||||||
|
<div class="modal fade" id="instanceModal" displayed="false" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content" style="border:0px; border-radius:20px;">
|
||||||
|
<div class="modal-header border-bottom">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row border-0">
|
||||||
|
<div class="header_popup col-lg-10 offset-lg-1 border-0 d-flex align-items-center justify-content-start">
|
||||||
|
<span id="message1"></span>
|
||||||
|
<h5 class="mb-0 model-title-h6"><strong>Please enter the below details to Submit a Demo Request</strong></h6>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-1 text-end d-flex align-items-center">
|
||||||
|
<button type="button" class="btn-close" data-bs-dismiss="modal" title="close" aria-label="Close"></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body text-lg-start">
|
||||||
|
<div class="get-demo-form">
|
||||||
|
<div class="row">
|
||||||
|
<div class="get-demo-message col-md-12" id="message"></div>
|
||||||
|
</div>
|
||||||
|
<form action="" method="post" id="getDemoFormPopup" class="request-demo-form">
|
||||||
|
<input type="hidden" name="csrf_test_name" value="c4310109240d581251eefa284623ff73" /> <input type="hidden" id="url" name="url" value="home/campaign" />
|
||||||
|
<div class="mb-3 row justify-content-start">
|
||||||
|
<label class="col-md-2 col-sm-2 offset-sm-1 col-12 col-form-label d-flex justify-content-lg-end">Name<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-md-8 col-sm-7 col-12">
|
||||||
|
<input class="form-control" type="text" name="name" id="full_name" placeholder="Full Name" aria-label="Enter your Full name" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row justify-content-start">
|
||||||
|
<label class="col-md-2 col-sm-2 offset-sm-1 col-12 col-form-label d-flex justify-content-lg-end">Company<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-md-8 col-sm-7 col-12">
|
||||||
|
<input class="form-control" type="text" name="company_name" id="company_name" placeholder="Company Name" aria-label="Enter your Company name" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row justify-content-start">
|
||||||
|
<label class="col-md-2 col-sm-2 offset-sm-1 col-12 col-form-label d-flex justify-content-lg-end">Email<span class="mandatory">*</span></label>
|
||||||
|
<div class="col-md-8 col-sm-7 col-12">
|
||||||
|
<input class="form-control" type="text" name="email" id="email" placeholder="Business Email" aria-label="Enter your Business Email" required/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row justify-content-start">
|
||||||
|
<label class="col-md-2 col-sm-2 offset-sm-1 col-12 col-form-label d-flex justify-content-lg-end">Phone</label>
|
||||||
|
<div class="col-md-8 col-sm-7 col-12">
|
||||||
|
<input class="form-control" type="text" name="phone_number" id="phone_number" placeholder="Business Phone number" aria-label="Enter your Business Phone Number" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<div class="col-lg-7 offset-lg-3 col-md-10 col-sm-7 col-12 text-center button-center mx-auto">
|
||||||
|
<!--removed=getDemoBtnMenu download-button -->
|
||||||
|
<button type="button" onClick="submitFormPopup(); return false;" name="submit" id="submit-button" value="Submit" class="btn get-submit-btn get-demo-btn w-100 gAnalytics_campaignRequestDemoPopup">Request a demo</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="website_url" data-key={website_url}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script is:inline>
|
||||||
|
const element = document.getElementById('website_url');
|
||||||
|
const url_key = element.dataset.key;
|
||||||
|
const send_mail_url = `${url_key}/send_mail/get_demo`;
|
||||||
|
|
||||||
|
var isProcessing = false;
|
||||||
|
$('#instanceModal').on('hide.bs.modal', function(e){
|
||||||
|
if(isProcessing == true){
|
||||||
|
e.preventDefault();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return null;
|
||||||
|
});
|
||||||
|
$(window).scroll(function() {
|
||||||
|
if ($(document).scrollTop() > 550 && $("#instanceModal").attr("displayed") === "false") {
|
||||||
|
$('#instanceModal').modal('show');
|
||||||
|
$("#instanceModal").attr("displayed", "true");
|
||||||
|
}
|
||||||
|
// $('#submit-button').click(function() {
|
||||||
|
// $('#instanceModal').modal('show');
|
||||||
|
// });
|
||||||
|
|
||||||
|
|
||||||
|
$(".campaign-demo-form #getDemoForm").validate({
|
||||||
|
rules: {
|
||||||
|
name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 2,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 3,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
email: {
|
||||||
|
required: true,
|
||||||
|
email: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
name: {
|
||||||
|
required: "Please enter your name",
|
||||||
|
minlength: "Your name must consist of at least 2 characters",
|
||||||
|
maxlength: "Your name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: "Please enter your company name",
|
||||||
|
minlength: "Your company name must consist of at least 3 characters",
|
||||||
|
maxlength: "Your company name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
email: "Please enter a valid email address"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$("#getDemoFormPopup").validate({
|
||||||
|
rules: {
|
||||||
|
name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 2,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 3,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
email: {
|
||||||
|
required: true,
|
||||||
|
email: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
name: {
|
||||||
|
required: "Please enter your name",
|
||||||
|
minlength: "Your name must consist of at least 2 characters",
|
||||||
|
maxlength: "Your name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: "Please enter your company name",
|
||||||
|
minlength: "Your company name must consist of at least 3 characters",
|
||||||
|
maxlength: "Your company name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
email: "Please enter a valid email address"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})
|
||||||
|
|
||||||
|
function submitForm(){
|
||||||
|
|
||||||
|
/* if($(".campaign-demo-form #getDemoForm").validate().form() == false){
|
||||||
|
return false;
|
||||||
|
}else{*/
|
||||||
|
// console.log($("#get-demo form#getDemoForm").validate().form());
|
||||||
|
if($("#get-demo form#getDemoForm").validate().form() == false ){
|
||||||
|
// console.log("#get-demo");
|
||||||
|
return false;
|
||||||
|
}else{
|
||||||
|
$.ajax({
|
||||||
|
type:"post",
|
||||||
|
url: send_mail_url,
|
||||||
|
data: $('#getDemoForm').serialize(),
|
||||||
|
dataType:'json',
|
||||||
|
beforeSend: function(){
|
||||||
|
$('#getDemoForm #submit-button').text("Processing...");
|
||||||
|
$('#getDemoForm #submit-button').attr('disabled', true);
|
||||||
|
},
|
||||||
|
success: function(returnData){
|
||||||
|
$('.campaign-demo-form .get-demo-form').hide();
|
||||||
|
if(returnData.status == true){
|
||||||
|
$('.campaign-demo-form #message').show();
|
||||||
|
$("html, body").animate({ scrollTop: 0 }, "slow");
|
||||||
|
$('.campaign-demo-form #message').html('<p class="get-demo-subtitle" style="font-size: 24px; color:white; text-align: center;">Thank you for contacting us.</p><p class="get-demo-subtitle" style="font-size: 16px;text-align: center;">We will get in touch with you shortly to set up a live demo.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>');
|
||||||
|
}else{
|
||||||
|
$('.campaign-demo-form #message').show();
|
||||||
|
$('.campaign-demo-form #message').html('<p class="get-demo-subtitle" style="font-size:16px;color:white;text-align: center;">Something went wrong. Please submit your details again.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function submitFormPopup(){
|
||||||
|
isProcessing = true;
|
||||||
|
if(!$("#getDemoFormPopup").validate().form()){
|
||||||
|
return false;
|
||||||
|
}else{
|
||||||
|
$.ajax({
|
||||||
|
type:"post",
|
||||||
|
url: send_mail_url,
|
||||||
|
data: $('#getDemoFormPopup').serialize(),
|
||||||
|
dataType:'json',
|
||||||
|
beforeSend: function(){
|
||||||
|
$('#instanceModal #submit-button').text("Processing...");
|
||||||
|
$('#instanceModal #submit-button').attr('disabled', true);
|
||||||
|
},
|
||||||
|
success: function(returnData){
|
||||||
|
$('.header_popup h5').addClass('d-none');
|
||||||
|
$('#getDemoFormPopup').hide();
|
||||||
|
isProcessing = false;
|
||||||
|
if(returnData.status == true){
|
||||||
|
$('#instanceModal #message').show();
|
||||||
|
$("html, body").animate({ scrollTop: 0 }, "slow");
|
||||||
|
$('.modal-body #message').html('<p class="get-demo-subtitle" style="font-size: 24px; text-align: center;">Thank you for contacting us.</p><p class="get-demo-subtitle" style="font-size: 16px;text-align: center;">We will get in touch with you shortly to set up a live demo.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>');
|
||||||
|
setTimeout(function() {
|
||||||
|
$('#instanceModal').modal('hide');
|
||||||
|
}, 1500);
|
||||||
|
}else{
|
||||||
|
$('.modal-body #message').show();
|
||||||
|
$('.modal-body #message').html('<p class="get-demo-subtitle" style="font-size:16px;text-align: center;">Something went wrong. Please submit your details again.</p><div class="text-center get-demo-subtitle"><button type="button" onClick="window.location.reload(); return false;" name="back" id="back" value="back" class="btn get-submit-btn get-demo-btn">GO BACK</button></div>');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,498 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<KonectarLayout title="konectar Cardiology | KOL Management Platform" slug="cardiology">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css" >
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css">
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<header id="header" class="cardiology-header align-items-center">
|
||||||
|
<div id="header-container" class="container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-md-5 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar Cardiology</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/cardiology/konectar_for_cardiology.svg" alt="konectar Cardiology"></a>
|
||||||
|
<div class="cardiology-logo-tag" >Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-8 col-md-7 col-12 nav-section">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block align-self-center">
|
||||||
|
<a href="/get-demo/cardiology" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content cardiology">
|
||||||
|
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="konectar-header" class="jumbotron-fluid">
|
||||||
|
<div class="cardiology-header-banner" style="display:none;"></div>
|
||||||
|
<div class="container-fluid cardiology-header-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="konectar-header-block col-lg-5 offset-lg-7 col-md-6 offset-md-6 wt-backgorund">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 col-md-12">
|
||||||
|
<p class="konectar-header-block-text cardiology-khbt">
|
||||||
|
<img class="konectar-header-block-img" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" alt="konectar logo"> KOL Management Platform – your resource to <span class="orange_color"> Discover, Profile and Engage </span> the right Cardiology Experts.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="get-demo-row row d-flex justify-content-center mb-3 d-sm-block d-md-none">
|
||||||
|
<div class="col-12 col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/cardiology" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="carousel-slider">
|
||||||
|
<div id="carousel-slider-inner" class="row carousel-inner carousel-desktop konectar-header-block-list mx-0">
|
||||||
|
<div class="col-lg-6 carousel-item active mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img justify-content-center">
|
||||||
|
<img class="" src="https://www.aissel.com/public/assets/images/homepage/icon_payments.svg" alt="Payments Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>30,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Cardiology Experts & Growing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="https://www.aissel.com/public/assets/images/konectar/band1/band1_center.svg" alt="Band Center Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>5,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Expert Centers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="https://www.aissel.com/public/assets/images/konectar/band1/band1_researchers.svg" alt="Researchers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>8,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Researchers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="https://www.aissel.com/public/assets/images/konectar/band1/band1_speakers.svg" alt="Speakers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>4,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Influential Speakers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="https://www.aissel.com/public/assets/images/konectar/band1/band1_clinical.svg" alt="Clinical Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>5,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Clinical Investigators</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="https://www.aissel.com/public/assets/images/konectar/band1/band1_journals.svg" alt="Journals Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>3,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Medical Journal Articles</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="carousel-nav-button">
|
||||||
|
<button class="carousel-control-prev" type="button" data-bs-target="#carousel-slider" data-bs-slide="prev">
|
||||||
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Previous</span>
|
||||||
|
</button>
|
||||||
|
<button class="carousel-control-next" type="button" data-bs-target="#carousel-slider" data-bs-slide="next">
|
||||||
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Next</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Specialities Section -->
|
||||||
|
<section id="konectar-specialities">
|
||||||
|
<div class="container py-lg-4">
|
||||||
|
<div class="row konectar-specialities-list">
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-5 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Cardiovascular Disease</li>
|
||||||
|
<li>Cardiothoracic Surgery</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-7 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Interventional Cardiology</li>
|
||||||
|
<li>Clinical Cardiac Electrophysiology</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Nuclear Medicine</li>
|
||||||
|
<li>Pediatric Cardiology</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row d-flex justify-content-center mt-3">
|
||||||
|
<div class="col-12 col-sm-6 col-md-6 col-lg-4 col-xl-3 text-center">
|
||||||
|
<!-- <button class="button-arrow button-icon-css"> -->
|
||||||
|
<a href="/get-demo/cardiology" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Brochure Section -->
|
||||||
|
<section id="konectar-brochure">
|
||||||
|
<div class="container-fluid cardiology-experts">
|
||||||
|
|
||||||
|
<div class="row h-100">
|
||||||
|
<div class="col-lg-8 offset-lg-4 col-md-7 offset-md-5 d-flex align-items-center">
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-12 d-sm-block d-md-none justify-content-center text-center">
|
||||||
|
<img src="/assets/images/mobile/product/cardio_experts.png" class="img-fluid brochure-mobile-img cardio-brochure-screen-img" alt="Cardiology Experts">
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-8 col-md-8 text-center">
|
||||||
|
<h3 class="konectar-experts-header">Discover Cardiology Experts</h3>
|
||||||
|
<p class="konectar-experts-title"><img src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform gives you access to over <span class="label-bold orange-color"><b>30,000 Cardiology Experts</b></span> carefully curated from millions of data points.</p>
|
||||||
|
<p class="konectar-experts-text font-italic px-lg-4 px-2">The Platform empowers you with rich data that is accurately curated and provides intelligence on various dimensions like speaking engagements, affiliations, publishing and research activities, industry payments details, influencer network and many more.</p>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-brochure-img-block d-flex flex-column align-items-center col-lg-4 col-md-4 mt-lg-5">
|
||||||
|
<img class="konectar-brochure-img" src="/assets/images/konectar/oncology/more_about_konectar.png" width="150px" height="200px" alt="konectar oncology brochure">
|
||||||
|
<div class="my-3">
|
||||||
|
<a href="#" id="reqstForm1" class="button orange-button button-12 px-2 blueBtn img-fluid" >Request Brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar HCP Landscape Section -->
|
||||||
|
<section id="konectar-hcp-landscape" class="cardiology-hcp-landscape">
|
||||||
|
<div class="container-fluid h-100">
|
||||||
|
<div class="row text-center">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<!-- 04-04-2024 -->
|
||||||
|
<h3 class="cardiology-title my-lg-4">Identify and Engage the right Cardiology Experts</h3>
|
||||||
|
<img class="cardiology-engage-img text-center" src="/assets/images/konectar/cardiology/cardiology_infographics.png" alt="HCP interactions">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Konectar Social Section -->
|
||||||
|
<section id="konectar-social-band" >
|
||||||
|
<div class="container-fluid cardiology-social-band py-4 px-4 py-lg-5 px-lg-5">
|
||||||
|
<div class="konectar-social-band-block row text-left">
|
||||||
|
<div class="col-lg-3 d-flex flex-column align-content-center justify-content-center">
|
||||||
|
<p><i>AI Powered Platform for connecting you to the right <span class="blue-color">Digital Opinion Leaders.</span></i></p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 text-center">
|
||||||
|
<img src="/assets/images/konectar/veterinary/konectar_social_image.png" class="konectar-social-img" alt="konectar - Social Media Analytics">
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 d-flex flex-column align-content-center justify-content-center">
|
||||||
|
<img class="konectar-social-band-img text-center" src="/assets/images/konectar/veterinary/konectar_social.png" width="260px" alt="konectar Social">
|
||||||
|
<div class="row mt-2 mt-lg-3">
|
||||||
|
<div class="col-md-2">
|
||||||
|
<a href="/konectar/social" class="learn-more" href="">Learn More</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Payment Analytics Section -->
|
||||||
|
<section id="konectar-analytics">
|
||||||
|
<div class="container py-3 py-lg-5">
|
||||||
|
<div class="konectar-analytics-header row text-center mb-4">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<!-- 04-04-2024 -->
|
||||||
|
<h3 class="konectar-analytics-title mb-lg-4">Payments Analytics: Precise analysis of Open Payments data</h3>
|
||||||
|
<p class="konectar-analytics-text px-lg-5">Understand the <span class="label-bold orange-color mb-4">Industry-HCP engagements</span> through comprehensive analysis of how different companies are partnering with the HCPs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-block row content-block mb-4 px-lg-5">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/find_influencers.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Find Influencers</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Find Influencers through analytics on payments received by the HCPs from different life-sciences companies</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/understand_competition.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Understand Competition</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Easily understand how your competition is utilizing the KOLs and understand their spend on different activities</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/market_value.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Get the Fair Market Value</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Through ready-to-use reports, get the FMV of KOLs for different engagement types</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/cardiology" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Discover Section -->
|
||||||
|
<section id="konectar-discover" class="cardiology-discover">
|
||||||
|
<div class="container py-4 py-lg-5">
|
||||||
|
<div class="row konectar-discover-header text-center">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-discover-header mb-2 mb-lg-4"><span class="label-bold orange-color">DISCOVER</span> the most influential and impactful <span class="label-bold orange-color">HCPs</span> in the research, diagnosis and treatment of <span class="label-bold orange-color">Cardiology</span> conditions.</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row konectar-discover-block">
|
||||||
|
<div class="col-lg-6 col-md-6">
|
||||||
|
<div class="row cardiology-kdb-bg">
|
||||||
|
<div class="col-8 col-lg-8 col-md-6 text-center">
|
||||||
|
<p class="konectar-discover-title cardiology-kdb-title text-end mt-1">EXPERTISE BASED SEGMENTATION</p>
|
||||||
|
<p class="konectar-discover-description text-end">Advanced Expertise Based Segmentation capabilities automatically creates a dynamic list of HCPs based on their expertise.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-4 col-md-6 justify-content-center find-influencers">
|
||||||
|
<img class="img-fluid mx-auto d-block " src="/assets/images/konectar/oralhealth/oral_segmentation.png" width="190px" height="185px" alt="listen">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-6">
|
||||||
|
<div class="row cardiology-kdb-bg">
|
||||||
|
<div class="col-4 col-lg-4 col-md-6 justify-content-center find-influencers">
|
||||||
|
<img class="img-fluid mx-auto d-block " src="/assets/images/konectar/oralhealth/oral_similar.png" width="190px" height="185px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-8 col-md-6 text-center">
|
||||||
|
<p class="konectar-discover-title cardiology-kdb-title text-start mt-1">VIEW SIMILAR</p>
|
||||||
|
<p class="konectar-discover-description text-start">View Similar is an automated intelligent recommendation feature which helps user to discover similar HCPs based on expertise and experience.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row konectar-discover-block">
|
||||||
|
<div class="col-lg-6 col-md-6">
|
||||||
|
<div class="row cardiology-kdb-bg">
|
||||||
|
<div class="col-8 col-lg-8 col-md-6 text-center">
|
||||||
|
<p class="konectar-discover-title cardiology-kdb-title text-end mt-1">HCP REFERRAL NETWORK</p>
|
||||||
|
<p class="konectar-discover-description text-end">HCP Referral Network allows user to get an understanding of the top practice leaders upto 3 degrees of connections based on the patient referrals.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-4 col-md-6 justify-content-center find-influencers">
|
||||||
|
<img class="img-fluid mx-auto d-block " src="/assets/images/konectar/cardiology/hcp_referral_network.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-6">
|
||||||
|
<div class="row cardiology-kdb-bg">
|
||||||
|
<div class="col-4 col-lg-4 col-md-6 justify-content-center find-influencers">
|
||||||
|
<img class="img-fluid mx-auto d-block " src="/assets/images/konectar/cardiology/discover_trends.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-8 col-md-6 text-center">
|
||||||
|
<p class="konectar-discover-title cardiology-kdb-title text-start mt-1">DISCOVER TRENDS</p>
|
||||||
|
<p class="konectar-discover-description text-start">Discover Trends uses automation to identify rising / emerging stars by tracking KOL activity over a period of time.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-button row d-flex justify-content-center mt-4">
|
||||||
|
<div class="col-6 col-lg-2 text-center">
|
||||||
|
<a href="/konectar/faq" class="button blue-button">Learn More</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 col-lg-2 text-center">
|
||||||
|
<a href="/get-demo/cardiology" class="button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar KOL Management Section -->
|
||||||
|
<section id="konectar-kol-management">
|
||||||
|
<div class="container py-5 px-lg-5">
|
||||||
|
<div class="konectar-kol-management-header row text-center mb-3 mb-lg-5">
|
||||||
|
<h3 class="konectar-kol-management-text">Why <img src="/assets/images/konectar/images/konectar_logo_white.svg" alt="konectar logo"> KOL Management?</h3>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-block row content-block mb-lg-4 px-lg-4">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/cardiology/why_konectar_1.png" alt="Why Konectar Cardiology Image 1">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">This is a destination with the most wide-ranging information about Cardiology medical experts involved in research, treatment and diagnosis of Cardiology conditions</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/cardiology/why_konectar_2.png" alt="Why Konectar Cardiology Image 2">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Slice and Dice the data by specific targeted disease areas and segment the required Healthcare Professionals into Global, National and Regional Influencers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/cardiology/why_konectar_3.png" alt="Why Konectar Cardiology Image 3">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">A robust platform with Built-in CRM features, advanced network visualizations and data analytics, offers flexibility to customers to customize the platform</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="#" id="reqstForm3" class="button orange-button">Request full brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</KonectarLayout>
|
|
@ -0,0 +1,493 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro";
|
||||||
|
---
|
||||||
|
<KonectarLayout title="Connecting CNS Experts | konectar KOL Management Platform" slug="cns">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/public/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/public/assets/css/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css">
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<header id="header" class="cns-header align-items-center">
|
||||||
|
<div id="header-container" class="container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-md-5 col-sm-6 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar CNS</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/cns/konectar_cns_logo.svg" alt="konectar CNS"></a>
|
||||||
|
<div class="cns-logo-tag" >Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-8 col-md-7 col-sm-6 col-12 nav-section">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block align-self-center">
|
||||||
|
<a href="/get-demo/cns" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content cns-main-section">
|
||||||
|
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="konectar-header" class="jumbotron-fluid cns-header">
|
||||||
|
<div class="cns-header-banner" style="display:none;"></div>
|
||||||
|
<div class="container-fluid cns-header-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="konectar-header-block col-lg-5 offset-lg-7 col-md-6 offset-md-6 wt-backgorund">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12">
|
||||||
|
<p class="konectar-header-block-text">
|
||||||
|
<img class="konectar-header-block-img" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform – your resource to <span class="orange_color"> Discover, Profile and Engage </span> the right CNS Experts.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="get-demo-row row d-flex justify-content-center mb-3 d-sm-block d-md-none">
|
||||||
|
<div class="col-12 col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/cns" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="carousel-slider" data-bs-ride="">
|
||||||
|
<div id="carousel-slider-inner" class="row carousel-inner carousel-desktop konectar-header-block-list mx-0">
|
||||||
|
<div class="col-lg-6 carousel-item active mb-lg-3">
|
||||||
|
<div class="konectar-header-block-item-img justify-content-center">
|
||||||
|
<img class="" src="/assets/images/homepage/icon_payments.svg" alt="Payments Icon" width="40px" height="30px" >
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b class="editable">70,000+</b></label>
|
||||||
|
<p class="align-middle mb-0 editable"> CNS Experts & Growing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-3">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_speakers.svg" alt="Speakers Band Icon" width="40px" height="30px" >
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>10,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Influential Speakers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-3">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_leaders.svg" alt="Band Leaders Icon" width="40px" height="30px" >
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>40,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Practice Leaders</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-3">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_researchers.svg" alt="Researchers Band Icon" width="40px" height="30px" >
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>10,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Researchers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-3">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_center.svg" alt="Band Center Icon" width="40px" height="30px" >
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>24,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Expert Center</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-3">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_journals.svg" alt="Journals Band Icon" width="40px" height="30px" >
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>8,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Medical Journal</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="carousel-nav-button" style="display: none;">
|
||||||
|
<button class="carousel-control-prev" type="button" data-bs-target="#carousel-slider" data-bs-slide="prev">
|
||||||
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Previous</span>
|
||||||
|
</button>
|
||||||
|
<button class="carousel-control-next" type="button" data-bs-target="#carousel-slider" data-bs-slide="next">
|
||||||
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Next</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar HCP Landscape Section -->
|
||||||
|
<section id="konectar-hcp-landscape">
|
||||||
|
<div class="container-fluid cns-hcp-landscape py-lg-3">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12">
|
||||||
|
<p class="konectar-landscape-text text-center">Understand the HCP landscape. Find the right experts</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-12">
|
||||||
|
<div class="container">
|
||||||
|
<img class="w-100" src="/assets/images/konectar/cns/infographics_design_new.png" alt="konectar features" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<!-- Konectar Brochure Section -->
|
||||||
|
<section id="konectar-brochure" class="cns-brochure">
|
||||||
|
<div class="container-fluid cns-experts py-sm-4 py-3">
|
||||||
|
<div class="row h-100">
|
||||||
|
<div class="col-md-8 offset-md-4 d-flex align-items-center">
|
||||||
|
<div class="row justify-content-center align-items-center">
|
||||||
|
<div class="col-12 d-sm-block d-md-none justify-content-center text-center">
|
||||||
|
<img src="/assets/images/mobile/product/cns_mobile.png" class="img-fluid brochure-mobile-img cns-brochure-screen-img" alt="CNS Experts">
|
||||||
|
</div>
|
||||||
|
<div class="col-md-8 text-center">
|
||||||
|
<h2 class="konectar-experts-header">Discover and Engage the Right Experts</h2>
|
||||||
|
<p class="konectar-experts-title">With a robust database of extensive data on the expertise of HCPs, <img src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform helps you Discover and Segment the right medical experts, and utilize them for productive outcomes.</p>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-brochure-img-block d-flex flex-column align-items-center col-lg-4 col-md-4 mt-lg-5">
|
||||||
|
<img class="konectar-brochure-img img-fluid" src="/assets/images/konectar/cns/thumbnail1.png" width="150px" height="200px" alt="konectar oncology brochure">
|
||||||
|
<div class="my-lg-3">
|
||||||
|
<a id="reqstForm1" class="button orange-button button-12 px-2 text-center" href="">Request Brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Discover Section -->
|
||||||
|
<section id="konectar-discover" class="cns-discover">
|
||||||
|
<div class="container py-4 py-lg-5">
|
||||||
|
<div class="konectar-discover-header row text-center">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-discover-header mb-2 mb-lg-4"><span class="label-bold orange-color">DISCOVER</span> the most influential and impactful <span class="label-bold orange-color">HCPs</span> in the research, diagnosis and treatment of <span class="label-bold orange-color">CNS</span> conditions.</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-block row">
|
||||||
|
<div class="col-md-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-4 col-md-12 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/cns/rising_stars.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-md-12 text-center">
|
||||||
|
<p class="konectar-discover-title text-center1 mt-1">RISING STARS</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Identify the Rising Stars and Emerging Influencers with reports that analyze the trends in the professional activities over years.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-4 col-md-12 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/cns/view_similar.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-md-12 text-center">
|
||||||
|
<p class="konectar-discover-title text-center1 mt-1">VIEW SIMILAR</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Discover more experts in the field through automated recommendations of newer experts that you require.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-4 col-md-12 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/cns/extended_referral_network.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-md-12 text-center">
|
||||||
|
<p class="konectar-discover-title text-center1 mt-1">EXTENDED REFERRAL NETWORK</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-md-4">Identify the Practice Leaders through visual analysis of 3 degrees of connections based on patient referrals.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-button row d-flex justify-content-center mt-4">
|
||||||
|
<div class="col-12 col-lg-12 text-center">
|
||||||
|
<a href="/konectar/faq" class="button blue-button">Learn More</a>
|
||||||
|
<a href="/get-demo/cns" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar KPI-based Ranking Section -->
|
||||||
|
<section id="konectar-kpi-band">
|
||||||
|
<div class="container-fluid cns-kpi-band">
|
||||||
|
<div class="cns-kpi-banner" style="display:none;"></div>
|
||||||
|
<div class="row h-100">
|
||||||
|
<div class="col-lg-8 offset-lg-4 col-md-7 offset-md-5 d-flex align-items-center">
|
||||||
|
<div class="row justify-content-center align-items-center">
|
||||||
|
<div class="col-lg-8 col-md-8 text-center">
|
||||||
|
<h3 class="konectar-experts-header">Advanced KPI-based Ranking</h3>
|
||||||
|
<p class="konectar-experts-title">Allows you to refine ranking by using drill downs to get precise results. You can also create segmentation of Global, National or Regional influencers with expertise in specific disease conditions.</p>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-brochure-img-block d-flex flex-column align-items-center col-lg-4 col-md-4 mt-lg-5">
|
||||||
|
<!-- d-none d-sm-block -->
|
||||||
|
<img class="konectar-brochure-img img-fluid" src="/assets/images/konectar/cns/thumbnail1.png" width="150px" height="200px" alt="konectar oncology brochure">
|
||||||
|
<div class="my-lg-3">
|
||||||
|
<a id="reqstForm2" href="" class="button orange-button button-12 px-2 text-center">Request Brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Payment Analytics Section -->
|
||||||
|
<section id="konectar-analytics">
|
||||||
|
<div class="container py-3 py-lg-5">
|
||||||
|
<div class="konectar-analytics-header row text-center mb-4">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-analytics-title mb-lg-4">Precise Open Payments Analysis: Payments Analytics</h3>
|
||||||
|
<p class="konectar-analytics-text px-lg-5">Understand the <span class="label-bold orange-color mb-4">Industry-HCP engagements</span> through comprehensive analysis of how different companies are partnering with the HCPs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-block row content-block mb-4 px-lg-5">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/find_influencers.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Find Influencers</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Find Influencers through analytics on payments received by the HCPs from different life-sciences companies</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/understand_competition.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Understand Competition</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Easily understand how your competition is utilizing the KOLs and understand their spend on different activities</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/market_value.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Get the Fair Market Value</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Through ready-to-use reports, get the FMV of KOLs for different engagement types</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Konectar KOL Management Section -->
|
||||||
|
<section id="konectar-kol-management">
|
||||||
|
<div class="container py-5 px-lg-5">
|
||||||
|
<div class="konectar-kol-management-header row text-center mb-3 mb-lg-5">
|
||||||
|
<h3 class="konectar-kol-management-text">Why <img src="/assets/images/konectar/images/konectar_logo_white.svg" alt="konectar logo"> KOL Management?</h3>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-block row content-block mb-lg-4 px-lg-4">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_1.png" alt="Why Konectar Image 1">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">The most robust database of CNS experts accurately curated based on data from thousands of sources.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_2.png" alt="Why Konectar Image 2">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Expertise-based discovery and segmentation of experts into Global, National and Regional Influence leaders.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_3.png" alt="Why Konectar Image 3">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Advanced features and insights on HCPs including intelligent learning and recommendations, network maps, engagement tracking, and easily customizable for your company needs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="#" id="reqstForm3" class="button orange-button">Request full brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Specialities Section -->
|
||||||
|
<section id="konectar-specialities">
|
||||||
|
<div class="container py-lg-4">
|
||||||
|
<div class="konectar-specialities-list-title">
|
||||||
|
<p class="text-center py-lg-3">20+ CNS Specialties</p>
|
||||||
|
</div>
|
||||||
|
<div class="row konectar-specialities-list">
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-md-4 col-12 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Adolescent Medicine</li>
|
||||||
|
<li>Addiction Medicine</li>
|
||||||
|
<li>Clinical Neuropsychology</li>
|
||||||
|
<li>Forensic Psychiatry</li>
|
||||||
|
<li>Geriatric Psychiatry</li>
|
||||||
|
<li>Interventional Pain Management</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-md-4 col-12 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Marital and Family Therapist</li>
|
||||||
|
<li>Neuromuskuloskeletal Medicine</li>
|
||||||
|
<li>Neuropsychiatry</li>
|
||||||
|
<li>Neurology</li>
|
||||||
|
<li>Neurosurgery</li>
|
||||||
|
<li>Neuroradiology</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-md-4 col-12 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Neurologic Nurse Practitioner</li>
|
||||||
|
<li>Psychiatry</li>
|
||||||
|
<li>Psychiatry Nurse Practitioner</li>
|
||||||
|
<li>Physical Medicine and Rehabilitation</li>
|
||||||
|
<li>Pediatric Neurology</li>
|
||||||
|
<li>Sleep Medicine</li>
|
||||||
|
<li>Speech Therapy</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row d-flex justify-content-center mt-3">
|
||||||
|
<div class="col-12 col-sm-6 col-md-6 col-lg-4 col-xl-3 text-center">
|
||||||
|
<!-- <i class="button-arrow bi bi-arrow-right-circle-fill "></i> -->
|
||||||
|
<a href="/get-demo/cns" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</KonectarLayout>
|
|
@ -0,0 +1,455 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<KonectarLayout title="konectar Dermatology | KOL Management Platform" slug="dermatology">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css">
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<header id="header" class="dermatology-header align-items-center">
|
||||||
|
<div id="header-container" class="container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-md-5 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar Dermatology</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/dermatology/konectar_for_dermatology.png" alt="konectar Dermatology"></a>
|
||||||
|
<div class="logo-tag" >Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-8 col-md-7 col-12 nav-section">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block align-self-center">
|
||||||
|
<a href="/get-demo/dermatology" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content dermatology">
|
||||||
|
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="konectar-header" class="jumbotron-fluid">
|
||||||
|
<div class="dermatology-header-banner" style="display:none;"></div>
|
||||||
|
<div class="container-fluid dermatology-header-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="konectar-header-block col-lg-5 offset-lg-7 col-md-6 offset-md-6 wt-backgorund">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12">
|
||||||
|
<p class="konectar-header-block-text dermatology-khbt">
|
||||||
|
<img class="konectar-header-block-img" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform – your resource to <span class="orange_color"> Discover, Profile and Engage </span> the right Dermatology Experts.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="get-demo-row row d-flex justify-content-center mb-3 d-sm-block d-md-none">
|
||||||
|
<div class="col-12 col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/dermatology" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="carousel-slider">
|
||||||
|
<div id="carousel-slider-inner" class="row carousel-inner carousel-desktop konectar-header-block-list mx-0">
|
||||||
|
<div class="col-lg-6 carousel-item active mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img justify-content-center">
|
||||||
|
<img class="" src="/assets/images/homepage/icon_payments.svg" alt="Payments Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>28,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Dermatology Experts & Growing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_researchers.svg" alt="Researchers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>2,600+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Researchers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_center.svg" alt="Band Center Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>17,500+</b></label>
|
||||||
|
<p class="align-middle mb-0">Expert Center</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_clinical.svg" alt="Clinical Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>1,700+</b></label>
|
||||||
|
<p class="align-middle mb-0">Clinical Investigators</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_journals.svg" alt="Journals Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>3,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Medical Journals</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_speakers.svg" alt="Speakers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>1,500+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Influential Speakers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="carousel-nav-button">
|
||||||
|
<button class="carousel-control-prev" type="button" data-bs-target="#carousel-slider" data-bs-slide="prev">
|
||||||
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Previous</span>
|
||||||
|
</button>
|
||||||
|
<button class="carousel-control-next" type="button" data-bs-target="#carousel-slider" data-bs-slide="next">
|
||||||
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Next</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Specialities Section -->
|
||||||
|
<section id="konectar-specialities" class="dermatology-specialities">
|
||||||
|
<div class="container py-lg-4">
|
||||||
|
<div class="row konectar-specialities-list">
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Dermatitis</li>
|
||||||
|
<li>Eczema</li>
|
||||||
|
<li>Psoriasis</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Skin Cancer</li>
|
||||||
|
<li>Acne</li>
|
||||||
|
<li>Rosacea</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Cellulitis</li>
|
||||||
|
<li>Lupus</li>
|
||||||
|
<li>Vitiligo</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row d-flex justify-content-center mt-3">
|
||||||
|
<div class="col-12 col-sm-6 col-md-6 col-lg-4 col-xl-3 text-center">
|
||||||
|
<a href="/get-demo/dermatology" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Brochure Section -->
|
||||||
|
<section id="konectar-brochure">
|
||||||
|
<div class="container-fluid dermatology-experts">
|
||||||
|
<div class="row d-block d-sm-none text-center konectar-brochure-image">
|
||||||
|
<img src="/assets/images/konectar/oncology/oncologyViewSimilar.png" class="img-fluid" alt="konectar HCP profiling" width="80%"/>
|
||||||
|
</div>
|
||||||
|
<div class="row h-100">
|
||||||
|
<div class="col-lg-8 offset-lg-4 col-md-8 offset-md-4 d-flex align-items-center">
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-lg-8 col-md-8 text-center">
|
||||||
|
<h2 class="konectar-experts-header blue-color">DISCOVER DERMATOLOGY EXPERTS</h2>
|
||||||
|
<p class="konectar-experts-title"><img src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform gives you access to over <span class="label-bold orange-color"><b>28,000 Dermatology Experts</b></span> carefully curated from millions of data points.</p>
|
||||||
|
<p class="konectar-experts-text font-italic px-lg-4 px-2">The Platform empowers you with rich data that is accurately curated and provides intelligence on various dimensions like speaking engagements, affiliations, publishing and research activities, industry payments details, influencer network and many more.</p>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-brochure-img-block d-flex flex-column align-items-center col-lg-4 col-md-4 mt-lg-5">
|
||||||
|
<img class="konectar-brochure-img img-fluid" src="/assets/images/konectar/oncology/more_about_konectar.png" width="150px" height="200px" alt="konectar oncology brochure">
|
||||||
|
<div class="my-3">
|
||||||
|
<a class="button orange-button button-12 px-2 blueBtn" href="" id="reqstForm1">Request Brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar HCP Landscape Section -->
|
||||||
|
<section id="konectar-hcp-landscape">
|
||||||
|
<div class="container-fluid dermatology-hcp-landscape py-lg-3">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<p class="konectar-landscape-text text-center">Understand the HCP landscape.</p>
|
||||||
|
<img class="text-center img-fluid" src="/assets/images/konectar/dermatology/infographics.png" alt="konectar features" />
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Payment Analytics Section -->
|
||||||
|
<section id="konectar-analytics">
|
||||||
|
<div class="container py-3 py-lg-5">
|
||||||
|
<div class="konectar-analytics-header row text-center mb-lg-4">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-analytics-title mb-lg-4">Precise Analytics for Open Payments Data</h3>
|
||||||
|
<p class="konectar-analytics-text px-lg-5">Understand the <span class="label-bold orange-color mb-4">Industry-HCP engagements</span> through comprehensive analysis of how different companies are partnering with the HCPs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-block row content-block mb-4 px-lg-5">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/find_influencers.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Find Influencers</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Find Influencers through analytics on payments received by the HCPs from different life-sciences companies</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/understand_competition.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Understand Competition</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Easily understand how your competition is utilizing the KOLs and understand their spend on different activities</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/market_value.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Get the Fair Market Value</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Through ready-to-use reports, get the FMV of KOLs for different engagement types</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/dermatology" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Discover Section -->
|
||||||
|
<section id="konectar-discover" class="dermatology-discover">
|
||||||
|
<div class="container py-4 py-lg-5">
|
||||||
|
<div class="konectar-discover-header row text-center">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-discover-header mb-2 mb-lg-4"><span class="label-bold orange-color">DISCOVER</span> the most influential and impactful <span class="label-bold orange-color">HCPs</span> in the research, diagnosis and treatment of <span class="label-bold orange-color">Dermatology</span> conditions.</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-block row">
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/pain_medicine/discover_trends.png" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">DISCOVER HCP TRENDS</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Identify and rank the experts by tracking HCP activity over a period of time and engage them for different KOL Management programs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/dermatology/hcp_tiering.png" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">HCP TIERING</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Segment your HCPs based on their subject matter expertise into different tiers for your KOL Management strategy.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/dermatology/advance_filters.png" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">ADVANCED FILTERS</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Slice and Dice the data based on different parameters such as Tier, Speciality, Keywords, State, City, Industry and Organization etc,.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-button row d-flex justify-content-center mt-4">
|
||||||
|
<div class="col-12 text-center">
|
||||||
|
<a class="button blue-button" href="/konectar/faq">Learn More</a>
|
||||||
|
<a href="/get-demo/dermatology" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar KOL Management Section -->
|
||||||
|
<section id="konectar-kol-management">
|
||||||
|
<div class="container py-5 px-lg-5">
|
||||||
|
<div class="konectar-kol-management-header row text-center mb-3 mb-lg-5">
|
||||||
|
<h3 class="konectar-kol-management-text">Why <img src="/assets/images/konectar/images/konectar_logo_white.svg" alt="konectar logo"> KOL Management?</h3>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-block row content-block mb-lg-4 px-lg-4">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_1.png" alt="Why Konectar Image 1">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">This is a destination with the most wide-ranging information about Dermatology medical experts involved in research, treatment and diagnosis of Dermatology conditions.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block band-img d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/dermatology/whykonectar2.png" alt="Why Konectar Dermatology Image 2">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">konectar identifies and curates future Dermatology medical conferences and provides data on the HCPs attending the event of your interest.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block band-img d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/dermatology/whykonectar3.png" alt="Why Konectar Dermatology Image 3">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Identify the Emerging Influencers with reports that analyze the trends in the professional activities over years.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="#" id="reqstForm3" class="button orange-button">Request full brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</KonectarLayout>
|
|
@ -0,0 +1,455 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<KonectarLayout title="konectar Endocrinology | KOL Management Platform" slug="endocrinology">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css">
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<header id="header" class="endocrinology-header align-items-center">
|
||||||
|
<div id="header-container" class="container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-md-5 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar Endocrinology</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/endocrinology/konectar_for_endocrinology.svg" alt="konectar Endocrinology"></a>
|
||||||
|
<div class="logo-tag" >Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-8 col-md-7 col-12 nav-section">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block align-self-center">
|
||||||
|
<a href="/get-demo/endocrinology" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content endocrinology">
|
||||||
|
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="konectar-header" class="jumbotron-fluid">
|
||||||
|
<div class="endocrinology-header-banner" style="display:none;"></div>
|
||||||
|
<div class="container-fluid endocrinology-header-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="konectar-header-block col-lg-5 offset-lg-7 col-md-6 offset-md-6 wt-backgorund">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12">
|
||||||
|
<p class="konectar-header-block-text endocrinology-khbt">
|
||||||
|
<img class="konectar-header-block-img" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform – your resource to <span class="orange_color"> Discover, Profile and Engage </span> the right Endocrinology Experts.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="get-demo-row row d-flex justify-content-center mb-3 d-sm-block d-md-none">
|
||||||
|
<div class="col-12 col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/endocrinology" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="carousel-slider">
|
||||||
|
<div id="carousel-slider-inner" class="row carousel-inner carousel-desktop konectar-header-block-list mx-0">
|
||||||
|
<div class="col-lg-6 carousel-item active mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img justify-content-center">
|
||||||
|
<img class="" src="/assets/images/homepage/icon_payments.svg" alt="Payments Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>52,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Endocrinology Experts & Growing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_journals.svg" alt="Journals Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>3,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Medical Journals</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_leaders.svg" alt="Band Leaders Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>50,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Practice Leaders</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_researchers.svg" alt="Researchers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>3,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Researchers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_center.svg" alt="Band Center Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>6,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Expert Centers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_speakers.svg" alt="Speakers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>2,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Influential Speakers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="carousel-nav-button">
|
||||||
|
<button class="carousel-control-prev" type="button" data-bs-target="#carousel-slider" data-bs-slide="prev">
|
||||||
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Previous</span>
|
||||||
|
</button>
|
||||||
|
<button class="carousel-control-next" type="button" data-bs-target="#carousel-slider" data-bs-slide="next">
|
||||||
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Next</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Specialities Section -->
|
||||||
|
<section id="konectar-specialities">
|
||||||
|
<div class="container py-lg-4">
|
||||||
|
<div class="row konectar-specialities-list">
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-5 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Endocrinology</li>
|
||||||
|
<li>Diabetes and Metabolism</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-7 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Pediatric Endocrinology</li>
|
||||||
|
<li>Obstetrics and Gynecology</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Family Medicine</li>
|
||||||
|
<li>Internal Medicine</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row d-flex justify-content-center mt-3">
|
||||||
|
<div class="col-12 col-sm-6 col-md-6 col-lg-4 col-xl-3 text-center">
|
||||||
|
<a href="/get-demo/endocrinology" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Brochure Section -->
|
||||||
|
<section id="konectar-brochure">
|
||||||
|
<div class="container-fluid endocrinology-experts">
|
||||||
|
|
||||||
|
<div class="row h-100">
|
||||||
|
<div class="col-lg-8 offset-lg-4 col-md-8 offset-md-4 d-flex align-items-center">
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-12 d-sm-block d-md-none justify-content-center text-center">
|
||||||
|
<img src="/assets/images/mobile/product/endo_experts.png" class="img-fluid brochure-mobile-img cardio-brochure-screen-img" alt="Endocrinology Experts">
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-8 col-md-8 text-center">
|
||||||
|
<h2 class="konectar-experts-header">Discover Endocrinology Experts</h2>
|
||||||
|
<p class="konectar-experts-title"><img src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform gives you access to over <span class="label-bold orange-color"><b>52,000 Endocrinology Experts</b></span> carefully curated from millions of data points.</p>
|
||||||
|
<p class="konectar-experts-text font-italic px-lg-4 px-2">The Platform empowers you with rich data that is accurately curated and provides intelligence on various dimensions like speaking engagements, affiliations, publishing and research activities, industry payments details, influencer network and many more.</p>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-brochure-img-block d-flex flex-column align-items-center col-lg-4 col-md-4 mt-lg-5">
|
||||||
|
<img class="konectar-brochure-img img-fluid" src="/assets/images/konectar/oncology/more_about_konectar.png" width="150px" height="200px" alt="konectar oncology brochure">
|
||||||
|
<div class="my-3">
|
||||||
|
<a class="button orange-button button-12 px-2 blueBtn" href="" id="reqstForm1">Request Brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar HCP Landscape Section -->
|
||||||
|
<section id="konectar-hcp-landscape">
|
||||||
|
<div class="container-fluid endocrinology-hcp-landscape py-lg-3">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<p class="konectar-landscape-text text-center">Understand the HCP landscape.</p>
|
||||||
|
|
||||||
|
<img class="text-center img-fluid" src="/assets/images/konectar/endocrinology/endocrinology_infographics.png" alt="konectar features" >
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Payment Analytics Section -->
|
||||||
|
<section id="konectar-analytics">
|
||||||
|
<div class="container py-3 py-lg-5">
|
||||||
|
<div class="konectar-analytics-header row text-center mb-4">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-analytics-title mb-lg-4">Detailed Analytics of Open Payments Data</h3>
|
||||||
|
<p class="konectar-analytics-text px-lg-5">Understand the <span class="label-bold orange-color mb-4">Industry-HCP engagements</span> through comprehensive analysis of how different companies are partnering with the HCPs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-block row content-block mb-4 px-lg-5">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/find_influencers.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Find Influencers</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Find Influencers through analytics on payments received by the HCPs from different life-sciences companies</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/understand_competition.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Understand Competition</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Easily understand how your competition is utilizing the KOLs and understand their spend on different activities</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/market_value.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Get the Fair Market Value</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Through ready-to-use reports, get the FMV of KOLs for different engagement types</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/endocrinology" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Discover Section -->
|
||||||
|
<section id="konectar-discover">
|
||||||
|
<div class="container py-4 py-lg-5">
|
||||||
|
<div class="konectar-discover-header row text-center">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-discover-header mb-2 mb-lg-4"><span class="label-bold orange-color">DISCOVER</span> the most influential and impactful <span class="label-bold orange-color">HCPs</span> in the research, diagnosis and treatment of <span class="label-bold orange-color">Endocrinology</span> conditions.</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-block row">
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/endocrinology/endo_hcp_trends.png" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 text-center">
|
||||||
|
<p class="konectar-discover-title endocrinology-kdt text-center mt-1">DISCOVER HCP TRENDS</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-5">Identify and rank the experts by tracking HCP activity over a period of time and engage them for different KOL Management programs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/endocrinology/endo_view_similar.png" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 text-center">
|
||||||
|
<p class="konectar-discover-title endocrinology-kdt text-center mt-1">VIEW SIMILAR</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">View Similar is an automated intelligent recommendation feature which helps user to discover similar HCPs based on expertise and experience.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/endocrinology/endo_referral_network.png" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 text-center">
|
||||||
|
<p class="konectar-discover-title endocrinology-kdt text-center mt-1">HCP REFERRAL NETWORK</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Discover Endocrinology HCP network maps up to three degree of connections, based on patient referral data. You can identify influential HCPs and Top Prescribers in Endocrinology.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-button row d-flex justify-content-center mt-4">
|
||||||
|
<div class="col-12 text-center">
|
||||||
|
<a class="button blue-button" href="/konectar/faq">Learn More</a>
|
||||||
|
<a href="/get-demo/endocrinology" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar KOL Management Section -->
|
||||||
|
<section id="konectar-kol-management">
|
||||||
|
<div class="container py-5 px-lg-5">
|
||||||
|
<div class="konectar-kol-management-header row text-center mb-3 mb-lg-5">
|
||||||
|
<h3 class="konectar-kol-management-text">Why <img src="/assets/images/konectar/images/konectar_logo_white.svg" alt="konectar logo"> KOL Management?</h3>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-block row content-block mb-lg-4 px-lg-4">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_1.png" alt="Why Konectar Image 1">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">This is a destination with the most wide-ranging information about Endocrinology medical experts involved in research, treatment and diagnosis of Endocrinology & Diabetes conditions.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block band-img d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/endocrinology/why_konectar_2.png" alt="Why Konectar Endocrinology Image 2">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0"> konectar identifies and curates all future Endocrinology events and provides data on the HCPs attending the event of your interest.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/endocrinology/why_konectar_3.png" alt="Why Konectar Endocrinology Image">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">konectar’s medical media intelligence (MedIntel) feature curates articles from hundreds of relevant sources and allows you to follow your favourite topics.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="#" id="reqstForm3" class="button orange-button">Request full brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</KonectarLayout>
|
|
@ -0,0 +1,451 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<KonectarLayout title="konectar Ophthalmology | KOL Engagement Platform" slug="eyecare">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css">
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<header id="header" class="eyecare-header align-items-center">
|
||||||
|
<div id="header-container" class="container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-md-5 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar Eye Care</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/eyecare/konectar_eyecare_logo.png" alt="konectar Eyecare"></a>
|
||||||
|
<div class="eyecare-logo-tag" >Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-8 col-md-7 col-12 nav-section">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block align-self-center">
|
||||||
|
<a href="/get-demo/eyecare" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content eyecare">
|
||||||
|
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="konectar-header" class="jumbotron-fluid">
|
||||||
|
<div class="eyecare-header-banner" style="display:none;"></div>
|
||||||
|
<div class="container-fluid eyecare-header-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="konectar-header-block col-lg-5 offset-lg-7 col-md-6 offset-md-6 wt-backgorund">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12">
|
||||||
|
<p class="konectar-header-block-text eyecare-khbt">
|
||||||
|
<img class="konectar-header-block-img" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform – your resource to <span class="orange_color"> Discover, Profile and Engage </span> the right Ophthalmology and Optometry Experts.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="get-demo-row row d-flex justify-content-center mb-3 d-sm-block d-md-none">
|
||||||
|
<div class="col-12 col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/eyecare" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="carousel-slider">
|
||||||
|
<div id="carousel-slider-inner" class="row carousel-inner carousel-desktop konectar-header-block-list mx-0">
|
||||||
|
<div class="col-lg-6 carousel-item active mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img justify-content-center">
|
||||||
|
<img class="" src="/assets/images/homepage/icon_payments.svg" alt="Payments Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>70,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Ophthalmology Experts & Growing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_leaders.svg" alt="Band Leaders Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>50,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Practice Leaders</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_center.svg" alt="Band Center Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>13,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Expert Center</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_researchers.svg" alt="Researchers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>10,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Researchers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_speakers.svg" alt="Speakers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>13,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Influential Speakers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_journals.svg" alt="Journals Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>5,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Medical Journal</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="carousel-nav-button">
|
||||||
|
<button class="carousel-control-prev" type="button" data-bs-target="#carousel-slider" data-bs-slide="prev">
|
||||||
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Previous</span>
|
||||||
|
</button>
|
||||||
|
<button class="carousel-control-next" type="button" data-bs-target="#carousel-slider" data-bs-slide="next">
|
||||||
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Next</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Specialities Section -->
|
||||||
|
<section id="konectar-specialities" class="eyecare-specialities">
|
||||||
|
<div class="container py-lg-4">
|
||||||
|
<div class="row konectar-specialities-list">
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-8 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Age-Related Macular Degeneration</li>
|
||||||
|
<li>Diabetic Retinopathy</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-4 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Glaucoma</li>
|
||||||
|
<li>Cataracts</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Retina Diseases</li>
|
||||||
|
<li>Uveitis</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row d-flex justify-content-center mt-3">
|
||||||
|
<div class="col-12 col-sm-6 col-md-6 col-lg-4 col-xl-3 text-center">
|
||||||
|
<a href="/get-demo/eyecare" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Brochure Section -->
|
||||||
|
<section id="konectar-brochure">
|
||||||
|
<div class="container-fluid eyecare-experts">
|
||||||
|
<div class="row h-100">
|
||||||
|
<div class="col-lg-8 offset-lg-4 col-md-8 offset-md-4 col-12 d-flex align-items-center">
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-12 d-sm-block d-md-none justify-content-center text-center">
|
||||||
|
<img src="/assets/images/mobile/product/eyecare_experts.png" class="img-fluid brochure-mobile-img cardio-brochure-screen-img" alt="Eyecare Experts Network Map">
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-8 col-md-8 text-center">
|
||||||
|
<h2 class="konectar-experts-header blue-color">DISCOVER OPHTHALMOLOGY AND OPTOMETRY EXPERTS</h2>
|
||||||
|
<p class="konectar-experts-title"><img src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform gives you access to over <span class="label-bold orange-color"><b>30,000 Ophthalmology and Optometry Experts</b></span> carefully curated from millions of data points.</p>
|
||||||
|
<p class="konectar-experts-text font-italic px-lg-4 px-2">The Platform empowers you with rich data that is accurately curated and provides intelligence on various dimensions like speaking engagements, affiliations, publishing and research activities, industry payments details, influencer network and many more.</p>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-brochure-img-block d-flex flex-column align-items-center col-lg-4 col-md-4 mt-lg-5">
|
||||||
|
<img class="konectar-brochure-img img-fluid" src="/assets/images/konectar/oncology/more_about_konectar.png" width="150px" height="200px" alt="konectar oncology brochure">
|
||||||
|
<div class="my-3">
|
||||||
|
<a id="reqstForm1" class="button orange-button button-12 px-2 blueBtn" href="">Request Brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar HCP Landscape Section -->
|
||||||
|
<section id="konectar-hcp-landscape">
|
||||||
|
<div class="container-fluid eyecare-hcp-landscape py-lg-3">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<p class="konectar-landscape-text text-center">Understand the HCP landscape.</p>
|
||||||
|
<img class="text-center img-fluid" src="/assets/images/konectar/eyecare/infographics.png" alt="konectar features" >
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Payment Analytics Section -->
|
||||||
|
<section id="konectar-analytics">
|
||||||
|
<div class="container py-3 py-lg-5">
|
||||||
|
<div class="konectar-analytics-header row text-center mb-4">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-analytics-title mb-lg-4">Payments Analytics: Precise analysis of Open Payments data</h3>
|
||||||
|
<p class="konectar-analytics-text px-lg-5">Understand the <span class="label-bold orange-color mb-4">Industry-HCP engagements</span> through comprehensive analysis of how different companies are partnering with the HCPs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-block row content-block mb-4 px-lg-5">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/find_influencers.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Find Influencers</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Find Influencers through analytics on payments received by the HCPs from different life-sciences companies</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/understand_competition.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Understand Competition</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Easily understand how your competition is utilizing the KOLs and understand their spend on different activities</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/market_value.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Get the Fair Market Value</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Through ready-to-use reports, get the FMV of KOLs for different engagement types</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/eyecare" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Discover Section -->
|
||||||
|
<section id="konectar-discover" class="eyecare-discover">
|
||||||
|
<div class="container py-4 py-lg-5">
|
||||||
|
<div class="konectar-discover-header row text-center">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-discover-header mb-2 mb-lg-4"><span class="label-bold orange-color">DISCOVER</span> the most influential and impactful <span class="label-bold orange-color">HCPs</span> in the research, diagnosis and treatment of <span class="label-bold orange-color">Ophthalmology</span> conditions.</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-block row">
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/dermatology/hcp_tiering.png" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">HCP TIERING</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Segment your HCPs based on their subject matter expertise into different tiers for your KOL Management strategy.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/eyecare/view_similar.svg" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 mb-lg-3 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">VIEW SIMILAR</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Discover more experts in the field through automated recommendations of newer experts.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/eyecare/heat_maps.svg" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">ADVANCED FILTERS</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Slice and Dice the data based on different parameters such as Tier, Speciality, Keywords, State, City, Industry and Organization etc,.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-button row d-flex justify-content-center mt-4">
|
||||||
|
<div class="col-12 text-center">
|
||||||
|
<a class="button blue-button" href="/konectar/faq">Learn More</a>
|
||||||
|
<a href="/get-demo/eyecare" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar KOL Management Section -->
|
||||||
|
<section id="konectar-kol-management">
|
||||||
|
<div class="container py-5 px-lg-5">
|
||||||
|
<div class="konectar-kol-management-header row text-center mb-3 mb-lg-5">
|
||||||
|
<h3 class="konectar-kol-management-text">Why <img src="/assets/images/konectar/images/konectar_logo_white.svg" alt="konectar logo"> KOL Management?</h3>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-block row content-block mb-lg-4 px-lg-4">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_1.png" alt="Why Konectar Image 1">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">This is a destination with the most wide-ranging information about Ophthalmology and Optometry experts involved in research, treatment and diagnosis of Ophthalmology conditions.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block band-img d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/dermatology/whykonectar2.png" alt="Why Konectar Dermatology Image 2" width="80px">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">konectar identifies and curates future Ophthalmology and Optometry conferences and provides data on the HCPs attending the event of your interest.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block band-img d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/eyecare/mobile/why_konectar_3.svg" alt="Why Konectar Eye Care Mobile Image 3" width="80px">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Advanced features and insights on HCPs including intelligent learning and recommendations, network maps, engagement tracking, and easily customizable for your company needs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="#" id="reqstForm3" class="button orange-button">Request full brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</KonectarLayout>
|
|
@ -0,0 +1,422 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<KonectarLayout title="Frequently Asked Questions | Aissel Technologies">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css" defer>
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css" defer>
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<style>
|
||||||
|
#header.fixed-top{
|
||||||
|
padding-top: 10px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<header id="header" class="cardiology-header align-items-center">
|
||||||
|
<div id="header-container" class="container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-sm-6 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar FAQs</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" alt="konectar logo"></a>
|
||||||
|
<div class="cardiology-logo-tag" >Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-8 col-sm-6 col-12 nav-section d-none d-sm-block">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block align-self-center">
|
||||||
|
<a href="/get-demo" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row konectorFaq">
|
||||||
|
<!-- 1 FAQ -->
|
||||||
|
<!-- 04-04-2024 -->
|
||||||
|
<h2 style="text-align:center;">FAQs</h2>
|
||||||
|
<div class="col-lg-12 col-12 bottomBox">
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
<div class="col-sm-12 col-md-12 col-lg-12 col-12 nopadding konectorBoxShadow">
|
||||||
|
<div class="col-12 question paddingNull">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-2 questionIcon"><span class="qImg">?</span></div>
|
||||||
|
<div class="col-lg-11 col-10 questionText"><span class="question">What is konectar?</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12 paddingNull">
|
||||||
|
<div class="contentDivider"></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-12 two_content_section">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-1"></div>
|
||||||
|
<div class="col-lg-11 col-10">
|
||||||
|
<p class="konectorData">konectar KOL Management Platform is a cloud application that connects the internal experts of the life-sciences companies with the right external medical experts.</p>
|
||||||
|
<ul class="faqList">
|
||||||
|
<li>Discover the right medical experts by assigning weightages to the expertise that you require</li>
|
||||||
|
<li>Create a clear Segmentation of Influencers into Practice Leaders, Speakers, Publishers at a Global, Regional and Local level</li>
|
||||||
|
<li>Discover the rising stars based on analysis of professional activities over the years</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-12">
|
||||||
|
<div class="konectorImages">
|
||||||
|
<div class="imageKonector1"> </div>
|
||||||
|
<img id="faq1Content" class="konectorLargeImages konectorLaptop img-fluid" alt="konectar laptop" src="/assets/images/konectar/faq/1a_new.png">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
</div>
|
||||||
|
<!-- 2 FAQ-->
|
||||||
|
<div class="col-12 bottomBox">
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
<div class="col-sm-12 col-md-12 col-lg-12 col-12 nopadding konectorBoxShadow">
|
||||||
|
<div class="col-12 question paddingNull">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-2 questionIcon"><span class="qImg">?</span></div>
|
||||||
|
<div class="col-lg-11 col-10 questionText"><span class="question">Which are the different specialties present in konectar?</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12 paddingNull">
|
||||||
|
<div class="contentDivider"></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12 two_content_section">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-1"></div>
|
||||||
|
<div class="col-lg-11 col-11">
|
||||||
|
<p class="konectorData">konectar KOL Management Platform has over 1 million profiles across different specialties including CNS, Oncology, Oral Health, Cardiology, Gastroenterology, Pain Medicine, Endocrinology and Dermatology carefully curated from thousands of sources. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-12">
|
||||||
|
<div class="konectorImages cnsi"><img class="" src="/assets/images/konectar/faq/konector_cns_influencers.png" alt="konectar CNS Influencers"></div>
|
||||||
|
<div>
|
||||||
|
<p class="konectorData support_heading text-center">Ultimate database of Influencers across different specialties in the US which is continually updated</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="col-lg-4 col-4"><div class="konectorImages cnsii"><img class="" src="images/konectar/faq/konector_team.svg" alt="konectar Team"></div><div><p class="konectorData support_heading text-center">Provides accurate data and insights about HCPs for their engagement with medical stakeholder community</p></div></div> -->
|
||||||
|
<div class="col-lg-4 col-12">
|
||||||
|
<div class="konectorImages insightChart"><img class=" chart" src="/assets/images/konectar/faq/konector_chart.png" alt="konectar Team"></div>
|
||||||
|
<div>
|
||||||
|
<p class="konectorData support_heading text-center">Provides accurate data and insights about HCPs for their engagement with medical stakeholder community</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4 col-12">
|
||||||
|
<div class="konectorImages cnsiii"><img class="" src="/assets/images/konectar/faq/konector_customize_modules.png" alt="konectar Customize modules"></div>
|
||||||
|
<div>
|
||||||
|
<p class="konectorData support_heading text-center">You can easily customize most of the modules and track Interactions and Payments in a compliant way</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
</div>
|
||||||
|
<!-- 4 FAQ -->
|
||||||
|
<div class="col-12 bottomBox">
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
<div class="col-sm-12 col-md-12 col-lg-12 col-12 nopadding konectorBoxShadow">
|
||||||
|
<div class="col-12 question paddingNull">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-2 questionIcon"><span class="qImg">?</span></div>
|
||||||
|
<div class="col-lg-11 col-10 questionText"><span class="question">What is View Similar? Can I Identify new HCPs with similar experience and expertise, using View Similar?</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12 paddingNull">
|
||||||
|
<div class="contentDivider"></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-12 two_content_section pe-3">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-1"></div>
|
||||||
|
<div class="col-lg-11 col-11">
|
||||||
|
<p class="konectorData viewSimilarContent">View Similar is a powerful feature that learns the professional experience, topic expertise, conditions treated and various other professional attributes in the HCPs that you select, and automatically recommends new HCPs with similar experience and expertise. <br/>Select an HCP and get recommendations on more experts.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-12">
|
||||||
|
<div class="konectorImages">
|
||||||
|
<div class="imageKonector1"> </div>
|
||||||
|
<img class="konectorLargeImages konectorLaptop img-fluid" alt="konectar View Similar" src="/assets/images/konectar/faq/konector_view_similar_ipad.png">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
</div>
|
||||||
|
<!-- 5 FAQ -->
|
||||||
|
<div class="col-12 bottomBox">
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
<div class="col-sm-12 col-md-12 col-lg-12 col-12 nopadding konectorBoxShadow">
|
||||||
|
<div class="col-12 question paddingNull">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-2 questionIcon"><span class="qImg">?</span></div>
|
||||||
|
<div class="col-lg-11 col-10 questionText"><span class="question">Can konectar be integrated with other CRM Platforms?</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12 paddingNull">
|
||||||
|
<div class="contentDivider"></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-12 two_content_section">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-1"></div>
|
||||||
|
<div class="col-lg-11 col-10">
|
||||||
|
<p class="konectorData crmContent">Yes, konectar can be easily integrated with your existing CRM system enabling you to seamlessly access both the systems.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-12">
|
||||||
|
<div class="konectorImages">
|
||||||
|
<div class="imageKonector1"> </div>
|
||||||
|
<img class="konectorSmallImages img-fluid" src="/assets/images/konectar/faq/konector_crm_platforms.png" alt="konectar CRM Platforms">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
</div>
|
||||||
|
<!-- 6 FAQ -->
|
||||||
|
<div class="col-12 bottomBox">
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
<div class="col-sm-12 col-md-12 col-lg-12 col-12 nopadding konectorBoxShadow">
|
||||||
|
<div class="col-12 question paddingNull">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-2 questionIcon"><span class="qImg">?</span></div>
|
||||||
|
<div class="col-lg-11 col-10 questionText"><span class="question">Is this a KOL Management software?
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12 paddingNull">
|
||||||
|
<div class="contentDivider"></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12 two_content_section">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-1"></div>
|
||||||
|
<div class="col-lg-11 col-11">
|
||||||
|
<p class="konectorData">konectar is a full-feature KOL Management Platform that also gives you access to the rich database of Influencers.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-12">
|
||||||
|
<div class="konectorImages"><img class=" chart" src="/assets/images/konectar/faq/konector_chart.png" alt="Segmentation of Experts"></div>
|
||||||
|
<div>
|
||||||
|
<p class="konectorData support_heading text-center">Assign weightage to different professional expertise and create Segmentation of experts</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4 col-12">
|
||||||
|
<div class="konectorImages"><img class=" hcp" src="/assets/images/konectar/faq/konector_hcp.png" alt="Business"></div>
|
||||||
|
<div>
|
||||||
|
<p class="konectorData support_heading text-center">Add the HCPs that are suitable for your business and start planning and tracking engagement</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4 col-12">
|
||||||
|
<div class="konectorImages"><img class=" database" src="/assets/images/konectar/faq/konector_database.png" alt="Database"></div>
|
||||||
|
<div>
|
||||||
|
<p class="konectorData support_heading text-center">If you have existing data or you need to include additional names, simply upload the names as new</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
</div>
|
||||||
|
<!-- 7 FAQ -->
|
||||||
|
<div class="col-12 bottomBox">
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
<div class="col-sm-12 col-md-12 col-lg-12 col-12 nopadding konectorBoxShadow">
|
||||||
|
<div class="col-12 question paddingNull">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-2 questionIcon"><span class="qImg">?</span></div>
|
||||||
|
<div class="col-lg-11 col-10 questionText"><span class="question">Using konectar, can I find the emerging/rising Influencers in any therapeutic area?
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12 paddingNull">
|
||||||
|
<div class="contentDivider"></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-12 two_content_section">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-1"></div>
|
||||||
|
<div class="col-lg-11 col-11">
|
||||||
|
<p class="konectorData influencersContent">konectar data is continually updated and you can identify experts with increasing trend in professional activities.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-12">
|
||||||
|
<div class="konectorImages">
|
||||||
|
<div class="imageKonector1"> </div>
|
||||||
|
<img class="konectorLargeImages img-fluid" src="/assets/images/konectar/faq/6a_new.png" alt="konectar therapeutic area">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
</div>
|
||||||
|
<!-- 8 FAQ -->
|
||||||
|
<div class="col-lg-12 col-12 bottomBox">
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
<div class="col-sm-12 col-md-12 col-lg-12 col-12 nopadding konectorBoxShadow">
|
||||||
|
<div class="col-lg-12 col-12 question paddingNull">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-2 questionIcon"><span class="qImg">?</span></div>
|
||||||
|
<div class="col-lg-11 col-10 questionText"><span class="question">Do you have Network Maps which will help me understand the collaboration and influence of HCPs?
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12 paddingNull">
|
||||||
|
<div class="contentDivider"></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-12 col-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-12 two_content_section">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-1 col-1"></div>
|
||||||
|
<div class="col-lg-11 col-10">
|
||||||
|
<p class="konectorData networkMapsContent">konectar KOL Management Platform features highly sophisticated Network Maps, Geo Maps and Referral Networks that help you understand the collaboration and influence network within the community of Healthcare Professionals.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-12">
|
||||||
|
<div class="konectorImages">
|
||||||
|
<div class="imageKonector1"> </div>
|
||||||
|
<img class="konectorLargeImages img-fluid" src="/assets/images/konectar/faq/7a_new.png" alt="konectar Network Maps">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="hidden-sm hidden-md col-lg-1 hidden"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</KonectarLayout>
|
|
@ -0,0 +1,465 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<KonectarLayout title="konectar Gastroenterology | KOL Engagement Platform" slug="gastroenterology">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css">
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<header id="header" class="gastroenterology-header align-items-center">
|
||||||
|
<div id="header-container" class="container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-md-5 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar Gastroenterology</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/gastroenterology/konectar_for_gastroenterology.png" alt="konectar Gastroenterology HCPs"></a>
|
||||||
|
<div class="gastroenterology-logo-tag" >Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-8 col-md-7 col-12 nav-section">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block align-self-center">
|
||||||
|
<a href="/get-demo/gastroenterology" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content gastroenterology">
|
||||||
|
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="konectar-header" class="jumbotron-fluid">
|
||||||
|
<div class="gastroenterology-header-banner" style="display:none;"></div>
|
||||||
|
<div class="container-fluid gastroenterology-header-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="konectar-header-block col-lg-5 offset-lg-7 col-md-6 offset-md-6 wt-backgorund">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12">
|
||||||
|
<p class="konectar-header-block-text gastroenterology-khbt">
|
||||||
|
<img class="konectar-header-block-img" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform – your resource to <span class="orange_color"> Discover, Profile and Engage </span> the right Gastroenterology Experts.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="get-demo-row row d-flex justify-content-center mb-3 d-sm-block d-md-none">
|
||||||
|
<div class="col-12 col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/gastroenterology" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="carousel-slider">
|
||||||
|
<div id="carousel-slider-inner" class="row carousel-inner carousel-desktop konectar-header-block-list mx-0">
|
||||||
|
<div class="col-lg-6 carousel-item active mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img justify-content-center">
|
||||||
|
<img class="" src="/assets/images/homepage/icon_payments.svg" alt="Payments Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>25,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Gastroenterology Experts</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_researchers.svg" alt="Researchers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>3,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Researchers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_center.svg" alt="Band Center Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>17,500+</b></label>
|
||||||
|
<p class="align-middle mb-0">Expert Centers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_speakers.svg" alt="Speakers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>2,500+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Influential Speakers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_journals.svg" alt="Journals Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>3,500+</b></label>
|
||||||
|
<p class="align-middle mb-0">Medical Journals</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_clinical.svg" alt="Clinical Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>2,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Clinical Investigators</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="carousel-nav-button">
|
||||||
|
<button class="carousel-control-prev" type="button" data-bs-target="#carousel-slider" data-bs-slide="prev">
|
||||||
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Previous</span>
|
||||||
|
</button>
|
||||||
|
<button class="carousel-control-next" type="button" data-bs-target="#carousel-slider" data-bs-slide="next">
|
||||||
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Next</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Specialities Section -->
|
||||||
|
<section id="konectar-specialities" class="gastroenterelogy-specialities">
|
||||||
|
<div class="container py-lg-4">
|
||||||
|
<div class="row konectar-specialities-list">
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Cystic Fibrosis</li>
|
||||||
|
<li>Exocrine pancreatic insufficiency</li>
|
||||||
|
<li>Gastroesophageal Reflux Disease</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Irritable Bowel Syndrome</li>
|
||||||
|
<li>Ulcerative colitis</li>
|
||||||
|
<li>Pancreatitis</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Crohn's Disease</li>
|
||||||
|
<li>Hepatitis</li>
|
||||||
|
<li>Hemorrhoids</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row d-flex justify-content-center mt-3">
|
||||||
|
<div class="col-12 col-sm-6 col-md-6 col-lg-4 col-xl-3 text-center">
|
||||||
|
<a href="/get-demo/gastroenterology" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Brochure Section -->
|
||||||
|
<section id="konectar-brochure">
|
||||||
|
<div class="container-fluid gastroenterology-experts">
|
||||||
|
|
||||||
|
<div class="row h-100">
|
||||||
|
<div class="col-lg-8 offset-lg-4 col-md-8 offset-md-4 d-flex align-items-center">
|
||||||
|
<div class="row align-items-center justify-content-center">
|
||||||
|
<div class="col-12 d-sm-block d-md-none justify-content-center text-center">
|
||||||
|
<img src="/assets/images/mobile/product/gastroenterology_experts.png" class="img-fluid brochure-mobile-img cardio-brochure-screen-img" alt="Gastroenterology Experts">
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-8 col-md-8 text-center">
|
||||||
|
<h2 class="konectar-experts-header">DISCOVER GASTROENTEROLOGY EXPERTS</h2>
|
||||||
|
<p class="konectar-experts-title"><img src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform gives you access to over <span class="label-bold orange-color"><b>25,000 Gastroenterology Experts</b></span> carefully curated from millions of data points.</p>
|
||||||
|
<p class="konectar-experts-text font-italic px-lg-4 px-2">The Platform empowers you with rich data that is accurately curated and provides intelligence on various dimensions like speaking engagements, affiliations, publishing and research activities, industry payments details, influencer network and many more.</p>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-brochure-img-block d-flex flex-column align-items-center col-lg-4 col-md-4 mt-lg-5">
|
||||||
|
<img class="konectar-brochure-img img-fluid" src="/assets/images/konectar/oncology/more_about_konectar.png" width="150px" height="200px" alt="konectar oncology brochure">
|
||||||
|
<div class="my-3">
|
||||||
|
<a id="reqstForm1" class="button orange-button button-12 px-2 blueBtn" href="">Request Brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Konectar Payment Analytics Section -->
|
||||||
|
<section id="konectar-analytics">
|
||||||
|
<div class="container py-3 py-lg-5">
|
||||||
|
<div class="konectar-analytics-header row text-center mb-4">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-analytics-title mb-lg-4">Open Payments Analysis: Accurate Payments Insights</h3>
|
||||||
|
<p class="konectar-analytics-text px-lg-5">Understand the <span class="label-bold orange-color mb-4">Industry-HCP engagements</span> through comprehensive analysis of how different companies are partnering with the HCPs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-block row content-block mb-4 px-lg-5">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/find_influencers.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Find Influencers</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Find Influencers through analytics on payments received by the HCPs from different life-sciences companies</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/understand_competition.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Understand Competition</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Easily understand how your competition is utilizing the KOLs and understand their spend on different activities</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/market_value.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Get the Fair Market Value</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Through ready-to-use reports, get the FMV of KOLs for different engagement types</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/gastroenterology" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Discover Section -->
|
||||||
|
<section id="konectar-discover" class="gastro-discover">
|
||||||
|
<div class="container py-4 py-lg-5">
|
||||||
|
<div class="konectar-discover-header row text-center">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-discover-header mb-2 mb-lg-4"><span class="label-bold orange-color">DISCOVER</span> the most influential and impactful <span class="label-bold orange-color">HCPs</span> in the research, diagnosis and treatment of <span class="label-bold orange-color">Gastroenterology</span> conditions.</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-block row">
|
||||||
|
<div class="col-lg-6">
|
||||||
|
<div class="row gastroenterology-kdb-bg">
|
||||||
|
<div class="col-8 col-lg-8 text-center">
|
||||||
|
<p class="konectar-discover-title gastroenterology-kdb-title text-end mt-1">HCP TIERING</p>
|
||||||
|
<p class="konectar-discover-description text-end">Segment your HCPs based on their subject matter expertise into different tiers for your KOL Management strategy.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/gastroenterology/mobile/tiering.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6">
|
||||||
|
<div class="row gastroenterology-kdb-bg">
|
||||||
|
<div class="col-4 col-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/gastroenterology/mobile/heatmaps.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-8 text-center">
|
||||||
|
<p class="konectar-discover-title gastroenterology-kdb-title text-start mt-1">HEAT MAPS</p>
|
||||||
|
<p class="konectar-discover-description text-start">Heat Maps & Territory Mapping of HCPs and HCOs for all your field representative upto zip code level.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-block row">
|
||||||
|
<div class="col-lg-6">
|
||||||
|
<div class="row gastroenterology-kdb-bg">
|
||||||
|
<div class="col-8 col-lg-8 text-center">
|
||||||
|
<p class="konectar-discover-title gastroenterology-kdb-title text-end mt-1">UPCOMING EVENTS</p>
|
||||||
|
<p class="konectar-discover-description text-end">Track future medical events and discover the potential speakers for your speaker bureau program.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/gastroenterology/mobile/upcoming_events.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6">
|
||||||
|
<div class="row gastroenterology-kdb-bg">
|
||||||
|
<div class="col-4 col-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/gastroenterology/mobile/mailbox.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-8 text-center">
|
||||||
|
<p class="konectar-discover-title gastroenterology-kdb-title text-start mt-1">MAILBOX</p>
|
||||||
|
<p class="konectar-discover-description text-start">Manage all your HCP communications (Emails & Appointments) using konectar's MailBox.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-button row d-flex justify-content-center mt-4">
|
||||||
|
<div class="col-6 col-lg-2 text-center">
|
||||||
|
<a class="button blue-button" href="/konectar/faq">Learn More</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-6 col-lg-2 text-center">
|
||||||
|
<a href="/get-demo/gastroenterology" class="button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar KOL Management Section -->
|
||||||
|
<section id="konectar-kol-management">
|
||||||
|
<div class="container py-5 px-lg-5">
|
||||||
|
<div class="konectar-kol-management-header row text-center mb-3 mb-lg-5">
|
||||||
|
<h3 class="konectar-kol-management-text">Why <img src="/assets/images/konectar/images/konectar_logo_white.svg" alt="konectar logo"> KOL Management?</h3>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-block row content-block mb-lg-4 px-lg-4">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_1.png" alt="Why Konectar Image 1">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">This is a destination with the most wide-ranging information about Gastroenterology medical experts involved in research, treatment and diagnosis of Gastroenterology conditions</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/cardiology/why_konectar_2.png" alt="Why Konectar Cardiology Image 2">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Slice and Dice the data by specific targeted disease areas and segment the required Healthcare Professionals into Global, National and Regional Influencers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/cardiology/why_konectar_3.png" alt="Why Konectar Cardiology Image 3">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">A robust platform with Built-in CRM features, advanced network visualizations and data analytics, offers flexibility to customers to customize the platform</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="#" id="reqstForm3" class="button orange-button">Request full brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</KonectarLayout>
|
|
@ -0,0 +1,385 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Konectar: Effective KOL Management" konectar_logo=1 navNum=5>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/animate.css">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="main" class="content">
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="kolm-band" class="jumbotron-fluid">
|
||||||
|
<div class="konectar-kolm-banner" style="display:none;"></div>
|
||||||
|
<div id="konectar-kolm-band" class="container-fluid konectar-kolm-band">
|
||||||
|
<div class="row justify-content-center align-items-center">
|
||||||
|
<div class="col-lg-6 col-md-12 kolm-band-title px-lg-5 px-4">
|
||||||
|
<!--14 JULY 2023 -->
|
||||||
|
<h1 class="kolm-title">Key Opinion Leader Management Software for Life Sciences</h1>
|
||||||
|
<!-- <h3 class="bl-color">Platform for Life Sciences</h3> -->
|
||||||
|
<p class="home_page_header_text">Supercharge your KOL management strategy with our cutting-edge solutions, featuring expert identification, segmentation, insightful analysis, and comprehensive post-engagement assessment.</p>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-8 kolmband px-lg-4">
|
||||||
|
<div class="row icon-box py-2">
|
||||||
|
<div class="col-lg-6 col-md-4 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img class="" src="/assets/images/homepage/icon_payments.svg" alt="Payments Icon">
|
||||||
|
</div>
|
||||||
|
<div class="px-2">
|
||||||
|
<span class="align-middle fw-bold">80 Million+</span>
|
||||||
|
<p class="align-middle mb-0">HCP Payments</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-4 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_clinical.svg" alt="Clinical Icon">
|
||||||
|
</div>
|
||||||
|
<div class="px-2">
|
||||||
|
<span class="align-middle fw-bold">479,000+</span>
|
||||||
|
<p class="align-middle mb-0">Clinical Studies</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row icon-box py-2">
|
||||||
|
<div class="col-lg-6 col-md-4 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_article.svg" alt="Article Icon">
|
||||||
|
</div>
|
||||||
|
<div class="px-2">
|
||||||
|
<span class="align-middle fw-bold">35 Million+</span>
|
||||||
|
<p class="align-middle mb-0">Medical Journal Articles</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-4 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_sanction.svg" alt="Sanction Icon">
|
||||||
|
</div>
|
||||||
|
<div class="px-2">
|
||||||
|
<span class="align-middle fw-bold">200,000+</span>
|
||||||
|
<p class="align-middle mb-0">Sanctions</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row icon-box py-2">
|
||||||
|
<div class="col-lg-6 col-md-4 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_patents.svg" alt="Patents Icon">
|
||||||
|
</div>
|
||||||
|
<div class="px-2">
|
||||||
|
<span class="align-middle fw-bold">20 Million+</span>
|
||||||
|
<p class="align-middle mb-0">Patents</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-4 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_events.svg" alt="Events Icon">
|
||||||
|
</div>
|
||||||
|
<div class="px-2">
|
||||||
|
<span class="align-middle fw-bold">150,000+</span>
|
||||||
|
<p class="align-middle mb-0">Global Medical Events</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row icon-box py-2">
|
||||||
|
<div class="col-lg-6 col-md-4 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_grants.svg" alt="Grants Icon">
|
||||||
|
</div>
|
||||||
|
<div class="px-2">
|
||||||
|
<span class="align-middle fw-bold">1.4 Million+</span>
|
||||||
|
<p class="align-middle mb-0">Grants</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-4 col-6 icon d-flex align-items-center p-0">
|
||||||
|
<div>
|
||||||
|
<img src="/assets/images/homepage/icon_life_science.svg" alt="Life Science Icon">
|
||||||
|
</div>
|
||||||
|
<div class="px-2">
|
||||||
|
<span class="align-middle fw-bold">30,000+</span>
|
||||||
|
<p class="align-middle mb-0">Life Science Journals</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 kolm-band-image px-lg-4 pt-lg-5 text-center">
|
||||||
|
<img src="/assets/images/konectar/generic/band1Screen.png" class="" alt="HCP Analytics from konectar">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Instance Listing Section -->
|
||||||
|
<section id="konectar-band" class="konectar-band">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<!-- Stack the columns on mobile by making one full-width and the other half-width -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 pt-4 pr-0">
|
||||||
|
<img src="/assets/images/konectar/logo/konectar_logo.svg" class="logo-image" width="220px" alt="konectar logo">
|
||||||
|
</div>
|
||||||
|
<div class="col-12 konectar-band-text">
|
||||||
|
<!-- 04-04-2024 -->
|
||||||
|
<h2 class="mb-0">KOL Management Platform</h2>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 konectar-band-subtext">
|
||||||
|
<!-- 04-04-2024 -->
|
||||||
|
<h3>Leverage the Power of Artificial Intelligence in Healthcare</h3>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-10 col-12 mx-auto konectar-band-subtext">
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p>konectar provides Life Sciences teams with actionable insights to identify and engage relevant medical professionals across different therapeutic areas.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Columns start at 50% wide on mobile and bump up to 33.3% wide on desktop -->
|
||||||
|
<div id="konectar-instance-list" class="row text-center pb-5 konectar-instance-list">
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 mt-lg-5 mt-3">
|
||||||
|
<div class="new-tag animated infinite zoomIn"><label></label></div>
|
||||||
|
<div class="konectar-instance-icon">
|
||||||
|
<a href="/konectar/oncology"><img src="/assets/images/konectar/logo/oncology_link.png" alt="Oncology Logo"></a>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title">
|
||||||
|
<a href="/konectar/oncology"><span>Oncology</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 mt-lg-5 mt-3">
|
||||||
|
<div class="new-tag animated infinite zoomIn"><label></label></div>
|
||||||
|
<div class="konectar-instance-icon">
|
||||||
|
<a href="/konectar/cns"><img src="/assets/images/konectar/logo/cns_link.png" alt="CNS Logo"></a>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title">
|
||||||
|
<a href="/konectar/cns"><span>CNS</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 mt-lg-5 mt-3">
|
||||||
|
<div class="new-tag animated infinite zoomIn"><label></label></div>
|
||||||
|
<div class="konectar-instance-icon">
|
||||||
|
<a href="/konectar/cardiology"><img src="/assets/images/konectar/logo/cardiology_link.png" alt="Cardiology Logo"></a>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title">
|
||||||
|
<a href="/konectar/cardiology"><span>Cardiology</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 mt-lg-5 mt-3">
|
||||||
|
<div class="new-tag animated infinite zoomIn"><label></label></div>
|
||||||
|
<div class="konectar-instance-icon">
|
||||||
|
<a href="/konectar/oralhealth"><img src="/assets/images/konectar/logo/oralhealth_link.png" alt="Oral Health Logo"></a>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title">
|
||||||
|
<a href="/konectar/oralhealth"><span>Oral Health</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 mt-lg-5 mt-3">
|
||||||
|
<div class="new-tag animated infinite zoomIn"><label></label></div>
|
||||||
|
<div class="konectar-instance-icon">
|
||||||
|
<a href="/konectar/endocrinology"><img src="/assets/images/konectar/logo/endocrinology_link.png" alt="Endocrinology Logo"></a>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title">
|
||||||
|
<a href="/konectar/endocrinology"><span>Endocrinology</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 mt-lg-5 mt-3">
|
||||||
|
<div class="new-tag animated infinite zoomIn"><label></label></div>
|
||||||
|
<div class="konectar-instance-icon">
|
||||||
|
<a href="/konectar/veterinary"><img src="/assets/images/konectar/logo/veterinary_link.svg" alt="Veterinary Logo"></a>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title">
|
||||||
|
<a href="/konectar/veterinary"><span>Veterinary</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 mt-lg-5 mt-3">
|
||||||
|
<div class="new-tag animated infinite zoomIn"><label>New</label></div>
|
||||||
|
<div class="konectar-instance-icon">
|
||||||
|
<a href="/konectar/gastroenterology"><img src="/assets/images/konectar/logo/gastroenterology_link.png" alt="Gastroenterology Logo"></a>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title">
|
||||||
|
<a href="/konectar/gastroenterology"><span>Gastroenterology</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 mt-lg-5 mt-3">
|
||||||
|
<div class="new-tag animated infinite zoomIn"><label>New</label></div>
|
||||||
|
<div class="konectar-instance-icon">
|
||||||
|
<a href="/konectar/painmedicine"><img src="/assets/images/konectar/logo/pain_management_link.png" alt="Pain Management Logo"></a>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title">
|
||||||
|
<a href="/konectar/painmedicine"><span>Pain Medicine</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 mt-lg-5 mt-3">
|
||||||
|
<div class="new-tag animated infinite zoomIn"><label>New</label></div>
|
||||||
|
<div class="konectar-instance-icon">
|
||||||
|
<a href="/konectar/dermatology"><img src="/assets/images/konectar/logo/dermatology_link.png" alt="Dermatology Logo"></a>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title">
|
||||||
|
<a href="/konectar/dermatology"><span>Dermatology</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 mt-lg-5 mt-3">
|
||||||
|
<div class="new-tag animated infinite zoomIn"><label>New</label></div>
|
||||||
|
<div class="konectar-instance-icon">
|
||||||
|
<a href="/konectar/nephrology"><img src="/assets/images/konectar/logo/nephrology_link.png" alt="Nephrology Logo"></a>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title">
|
||||||
|
<a href="/konectar/nephrology"><span>Nephrology</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-lg-2 col-md-3 col-sm-4 mt-lg-5 mt-3">
|
||||||
|
<div class="new-tag animated infinite zoomIn"><label>New</label></div>
|
||||||
|
<div class="konectar-instance-icon">
|
||||||
|
<a href="/konectar/eyecare"><img src="/assets/images/konectar/logo/eyecare_link.png" alt="Eye Care Logo"></a>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-instance-title">
|
||||||
|
<a href="/konectar/eyecare"><span>Eye Care</span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 text-center pb-lg-5 pb-4 demo-btn">
|
||||||
|
<a href="/get-demo/konectar" class="d-none button orange-button">Book a Demo</a>
|
||||||
|
<a href="/get-demo/konectar" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Virtual Engagement and Social Media Section -->
|
||||||
|
<section id="" class="">
|
||||||
|
<div class="text-center py-3">
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<h3 class="konectar-virtual-header py-2"> Revolutionizing the Way You Identify and Engage with Healthcare Experts!</h3>
|
||||||
|
</div>
|
||||||
|
<div class="container-fluid" id="konectar-sub-product">
|
||||||
|
<div class="row m-0">
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12 ksp-virtual-engage py-5">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-12">
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p class="konectar-engagement-virtual-text"><i>Collaborate, share insights, or seek experts' opinions virtually! Use our innovative solution to connect with HCPs, from anywhere and anytime!</i></p>
|
||||||
|
|
||||||
|
<div class="d-none d-sm-block kvel-block">
|
||||||
|
<a class="" href="/konectar/virtualengagement" role="">
|
||||||
|
<img class="konectar_virtual_engagement_screen" src="/assets/images/homepage/kon_virtual_eng.svg" alt="konectar virtual engagement screen">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-block d-sm-none text-center kvelm-block">
|
||||||
|
<img class="konectar_virtual_engagement_mscreen"src="/assets/images/homepage/konectar_virtual_image.png" alt="konectar virtual engagement screen">
|
||||||
|
<a class="" href="/konectar/virtualengagement" role="">
|
||||||
|
<img class="konectar_virtual_engagement_mlogo " src="/assets/images/mobile/homepage/konectar_virtual_logo.png" alt="konectar virtual engagement logo">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<!-- <div class="custom-text-center"><a class="learn-more fw-bold" href="" role="button">Learn More</a></div> -->
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-12 d-flex align-items-center my-lg-auto d-none d-sm-block kvel-block">
|
||||||
|
<img class="konectar_virtual_engagement_logo" src="/assets/images/homepage/konectar_virtual_image.png" alt="konectar virtual engagement logo">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12 ksp-social my-lg-auto py-5">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-12 ksp-social-content" style="padding-left:70px;">
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p class="konectar-engagement-virtual-text"><i>Find top Healthcare Opinion Leaders, tap into their expertise, and drive your brand forward on the digital landscape with our innovative AI platform.</i></p>
|
||||||
|
<div class="d-none d-sm-block kvel-block">
|
||||||
|
<a class="" href="/konectar/social" role="">
|
||||||
|
<img class="konectar_social_screen" src="/assets/images/konectar/veterinary/konectar_social.png" alt="konectar social screen">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-block d-sm-none text-center kvelm-block">
|
||||||
|
<img class="konectar_social_mscreen"src="/assets/images/homepage/konectar_social_image.png" alt="konectar social screen">
|
||||||
|
<a class="" href="/konectar/social" role="">
|
||||||
|
<img class="konectar_social_mlogo" src="/assets/images/konectar/veterinary/konectar_social.png" alt="konectar social logo">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<!-- <div class="custom-text-center"><a class="learn-more fw-bold" href="" role="button">Learn More</a></div> -->
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-12 d-flex align-items-center d-none d-sm-block my-lg-auto kvel-block">
|
||||||
|
<img class="konectar_social_logo" src="/assets/images/homepage/konectar_social_image.png" alt="konectar social logo">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Virtual Engagement and Social Media Section -->
|
||||||
|
<section id="konectar-sub-product" class="d-none">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row m-0 konectar-social-content">
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12 ksp-virtual-engage py-5">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-12">
|
||||||
|
<p class=""><i>Engage your HCPs Virtually. <br/> Anytime, Anywhere!!!!</i></p>
|
||||||
|
<div class="d-none d-sm-block">
|
||||||
|
<img src="/assets/images/homepage/kon_virtual_eng.svg" width="95%" alt="konectar Virtual Engagement">
|
||||||
|
</div>
|
||||||
|
<div class="d-block d-sm-none text-center">
|
||||||
|
<img src="/assets/images/homepage/konectar_virtual_image.png" width="250px" height="150px" alt="konectar Virtual Engagement">
|
||||||
|
<img src="/assets/images/mobile/homepage/konectar_virtual_logo.png" width="95%" alt="konectar Virtual Engagement">
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="custom-text-center"><a class="learn-more" href="#" role="button">Learn More</a></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-12 d-flex align-items-center d-none d-sm-block">
|
||||||
|
<img src="/assets/images/homepage/konectar_virtual_image.png" width="100%" alt="konectar Virtual Engagement">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12 ksp-social py-5">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-12 ksp-social-content" style="padding-left:70px;">
|
||||||
|
<p class=""><i>AI Powered Platform for <br/> connecting you to the right <br/> Digital Opinion Leaders.</i></p>
|
||||||
|
<div class="d-none d-sm-block">
|
||||||
|
<img src="/assets/images/konectar/veterinary/konectar_social.png" width="95%" alt="konectar Social">
|
||||||
|
</div>
|
||||||
|
<div class="d-block d-sm-none text-center">
|
||||||
|
<img src="/assets/images/homepage/konectar_social_image.png" width="250px" height="140px" alt="konectar Social">
|
||||||
|
<img src="/assets/images/konectar/veterinary/konectar_social.png" width="95%" alt="konectar Social">
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="custom-text-center"><a class="learn-more" href="#" role="button">Learn More</a></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-12 d-flex align-items-center d-none d-sm-block">
|
||||||
|
<img src="/assets/images/homepage/konectar_social_image.png" width="100%" alt="konectar Social">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Konectar Infographics -->
|
||||||
|
<section id="konectar-infographics" class="gridInverseMobile2">
|
||||||
|
<div class="container py-lg-4 py-3 ">
|
||||||
|
<div class="row justify-content-center align-items-center">
|
||||||
|
<div class="col-lg-10 text-center info-content">
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<h4 class="infographic-title lh-base">konectar streamlines the process of identifying, engaging, and collaborating with experts in the healthcare industry. The platform's data-driven analytics empowers your teams to optimize strategies and drive business success.</h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="row justify-content-center align-items-center">
|
||||||
|
<div class="infographics-image col-lg-12 text-center pt-lg-3 ">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> </div>
|
||||||
|
|
||||||
|
</Layout>
|
|
@ -0,0 +1,459 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<KonectarLayout title="konectar Nephrology | KOL Profiling | KOL Mapping" slug="nephrology">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css">
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<header id="header" class="nephrology-header align-items-center">
|
||||||
|
<div id="header-container" class="container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-md-5 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar Nephrology</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/nephrology/konectar_nephrology_logo.png" alt="konectar Nephrology"></a>
|
||||||
|
<div class="nephrology-logo-tag" >Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-8 col-md-7 col-12 nav-section">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block align-self-center">
|
||||||
|
<a href="/get-demo/nephrology" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content nephrology">
|
||||||
|
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="konectar-header" class="jumbotron-fluid">
|
||||||
|
<div class="nephrology-header-banner" style="display:none;"><img src="/assets/images/konectar/nephrology/mobile/screen01.png" alt="Nephrology Mobile Screen 1" class="nephrology-banner-img" /></div>
|
||||||
|
<div class="container-fluid nephrology-header-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="konectar-header-block col-lg-5 offset-lg-7 col-md-6 offset-md-6 wt-backgorund">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12">
|
||||||
|
<p class="konectar-header-block-text nephrology-khbt">
|
||||||
|
<img class="konectar-header-block-img" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform – your resource to <span class="orange_color"> Discover, Profile and Engage </span> the right Nephrology Experts.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="get-demo-row row d-flex justify-content-center mb-3 d-sm-block d-md-none">
|
||||||
|
<div class="col-12 col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/nephrology" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="carousel-slider">
|
||||||
|
<div id="carousel-slider-inner" class="row carousel-inner carousel-desktop konectar-header-block-list mx-0">
|
||||||
|
<div class="col-lg-6 carousel-item active mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img justify-content-center">
|
||||||
|
<img class="" src="/assets/images/homepage/icon_payments.svg" alt="Payments Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>20,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Nephrology Experts & Growing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_researchers.svg" alt="Researchers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>1,600+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Researchers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_center.svg" alt="Band Center Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>10,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Expert Centers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_clinical.svg" alt="Clinical Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>1,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Clinical Investigators</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_journals.svg" alt="Journals Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>3,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Medical Journals</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_speakers.svg" alt="Speakers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>1,500+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Influential Speakers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="carousel-nav-button">
|
||||||
|
<button class="carousel-control-prev" type="button" data-bs-target="#carousel-slider" data-bs-slide="prev">
|
||||||
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Previous</span>
|
||||||
|
</button>
|
||||||
|
<button class="carousel-control-next" type="button" data-bs-target="#carousel-slider" data-bs-slide="next">
|
||||||
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Next</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Specialities Section -->
|
||||||
|
<section id="konectar-specialities" class="nephro-specialities">
|
||||||
|
<div class="container py-lg-4">
|
||||||
|
<div class="row konectar-specialities-list">
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Chronic Kidney Disease</li>
|
||||||
|
<li>Kidney Stones</li>
|
||||||
|
<li>Kidney Infections</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Kidney Failure</li>
|
||||||
|
<li>Advanced Hypertension</li>
|
||||||
|
<li>Glomerular Disease</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Kidney Transplant</li>
|
||||||
|
<li>Lupus Nephritis</li>
|
||||||
|
<li>Polycystic Kidney Disease</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row d-flex justify-content-center mt-3">
|
||||||
|
<div class="col-12 col-sm-6 col-md-6 col-lg-4 col-xl-3 text-center">
|
||||||
|
<a href="/get-demo/nephrology" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Brochure Section -->
|
||||||
|
<section id="konectar-brochure">
|
||||||
|
<div class="container-fluid nephro-experts py-5">
|
||||||
|
<div class="row h-100 align-items-center">
|
||||||
|
<div class="col-lg-4 col-md-4 konectar-brochure-image text-center">
|
||||||
|
<img class="img-fluid" src="/assets/images/konectar/nephrology/discover_screen.png" alt="konectar Discover feature" width="" />
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-8 col-md-8 d-flex align-items-center">
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-lg-8 col-md-8 text-center">
|
||||||
|
<h2 class="konectar-experts-header blue-color">DISCOVER NEPHROLOGY EXPERTS</h2>
|
||||||
|
<p class="konectar-experts-title"><img src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform gives you access to over <span class="label-bold orange-color"><b>20,000 Nephrology Experts</b></span> carefully curated from millions of data points.</p>
|
||||||
|
<p class="konectar-experts-text font-italic px-lg-4 px-2">The Platform empowers you with rich data that is accurately curated and provides intelligence on various dimensions like speaking engagements, affiliations, publishing and research activities, industry payments details, influencer network and many more.</p>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-brochure-img-block d-flex flex-column align-items-center col-lg-4 col-md-4 mt-lg-5">
|
||||||
|
<img class="konectar-brochure-img img-fluid" src="/assets/images/konectar/oncology/more_about_konectar.png" width="150px" height="200px" alt="konectar oncology brochure">
|
||||||
|
<div class="my-3">
|
||||||
|
<a id="reqstForm1" class="button orange-button button-12 px-2 blueBtn" href="">Request Brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar HCP Landscape Section -->
|
||||||
|
<section id="konectar-hcp-landscape">
|
||||||
|
<div class="container-fluid nephro-hcp-landscape py-lg-3">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<p class="konectar-landscape-text text-center">Understand the HCP landscape.</p>
|
||||||
|
<img class="text-center img-fluid" src="/assets/images/konectar/nephrology/infographics_design.png" alt="konectar features" >
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Payment Analytics Section -->
|
||||||
|
<section id="konectar-analytics">
|
||||||
|
<div class="container py-3 py-lg-5">
|
||||||
|
<div class="konectar-analytics-header row text-center mb-4">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-analytics-title mb-lg-4">Advanced Open Payments Data Analytics</h3>
|
||||||
|
<p class="konectar-analytics-text px-lg-5">Understand the <span class="label-bold orange-color mb-4">Industry-HCP engagements</span> through comprehensive analysis of how different companies are partnering with the HCPs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-block row content-block mb-4 px-lg-5">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/find_influencers.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Find Influencers</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Find Influencers through analytics on payments received by the HCPs from different life-sciences companies</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/understand_competition.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Understand Competition</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Easily understand how your competition is utilizing the KOLs and understand their spend on different activities</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/market_value.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Get the Fair Market Value</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Through ready-to-use reports, get the FMV of KOLs for different engagement types</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/nephrology" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Discover Section -->
|
||||||
|
<section id="konectar-discover" class="nephro-discover">
|
||||||
|
<div class="container py-4 py-lg-5">
|
||||||
|
<div class="konectar-discover-header row text-center">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-discover-header mb-2 mb-lg-4"><span class="label-bold orange-color">DISCOVER</span> the most influential and impactful <span class="label-bold orange-color">HCPs</span> in the research, diagnosis and treatment of <span class="label-bold orange-color">Nephrology</span> conditions.</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-block row">
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/pain_medicine/discover_trends.png" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">DISCOVER HCP</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Identify and rank the experts by tracking HCP activity over a period of time and engage them for different KOL Management programs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/nephrology/Real-time-Data-Updates.png" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 mb-lg-3 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">REAL TIME DATA UPDATES</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4 pb-lg-4">Accurate, Comprehensive & Up-to-date profiles of Healthcare Professionals.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/dermatology/hcp_tiering.png" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">TRENDS ANALYSIS</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Segment your HCPs based on their subject matter expertise into different tiers for your KOL Management strategy.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-button row d-flex justify-content-center mt-4">
|
||||||
|
<div class="col-12 text-center">
|
||||||
|
<a class="button blue-button" href="/konectar/faq">Learn More</a>
|
||||||
|
<a href="/get-demo/nephrology" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar KOL Management Section -->
|
||||||
|
<section id="konectar-kol-management">
|
||||||
|
<div class="container py-5 px-lg-5">
|
||||||
|
<div class="konectar-kol-management-header row text-center mb-3 mb-lg-5">
|
||||||
|
<h3 class="konectar-kol-management-text">Why <img src="/assets/images/konectar/images/konectar_logo_white.svg" alt="konectar logo"> KOL Management?</h3>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-block row content-block mb-lg-4 px-lg-4">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_1.png" alt="Why Konectar Image 1">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">This is a destination with the most wide-ranging information about Nephrology medical experts involved in research, treatment and diagnosis of Nephrology conditions.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block band-img d-flex justify-content-center">
|
||||||
|
<img class=" " src="/assets/images/konectar/nephrology/why_konectar_2_cal.png" alt="Why Konectar Nephrology Image">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">konectar identifies and curates future Nephrology medical conferences and provides data on the HCPs attending the event of your interest.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class=" " src="/assets/images/konectar/images/why_konectar_2.png" alt="Why Konectar Image 2">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Expertise-based segmentation and discovery of experts into Global, National and Regional Influence leaders.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="#" id="reqstForm3" class="button orange-button">Request full brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</KonectarLayout>
|
|
@ -0,0 +1,473 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro"
|
||||||
|
---
|
||||||
|
<KonectarLayout title="Konectar Oncology | KOL Management" slug="oncology">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css">
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<header id="header" class="oncology-header align-items-center">
|
||||||
|
<div id="header-container" class="container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-md-5 col-sm-6 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar Oncology</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/oncology/konectar_for_oncology.svg" alt="konectar Oncology HCPs"></a>
|
||||||
|
<div class="logo-tag">Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-8 col-md-7 col-sm-6 col-12 nav-section">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block align-self-center">
|
||||||
|
<a href="/get-demo/oncology" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content oncology">
|
||||||
|
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="konectar-header" class="jumbotron-fluid">
|
||||||
|
<div class="oncology-header-banner" style="display:none;"></div>
|
||||||
|
<div class="container-fluid oncology-header-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="konectar-header-block col-lg-5 offset-lg-7 col-md-6 offset-md-6 wt-backgorund">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12">
|
||||||
|
<p class="konectar-header-block-text">
|
||||||
|
<img class="konectar-header-block-img" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="100px" height="20px" alt="konectar logo"> KOL Management Platform – your resource to <span class="orange_color"> Discover, Profile and Engage </span> the right Oncology Experts.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="get-demo-row row d-flex justify-content-center mb-3 d-sm-block d-md-none">
|
||||||
|
<div class="col-12 col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/oncology" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="carousel-slider" data-bs-ride="">
|
||||||
|
<div id="carousel-slider-inner" class="row carousel-inner carousel-desktop konectar-header-block-list mx-0">
|
||||||
|
<div class="col-lg-6 carousel-item active mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img justify-content-center">
|
||||||
|
<img class="" src="/assets/images/homepage/icon_payments.svg" alt="Payments Icon" width="40px" height="30px">
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b class="editable">90,000+</b></label>
|
||||||
|
<p class="align-middle mb-0 editable">Oncology Experts & Growing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_researchers.svg" alt="Researchers Band Icon" width="40px" height="30px">
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b class="editable">10,000+</b></label>
|
||||||
|
<p class="align-middle mb-0 editable">Global Researchers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_leaders.svg" alt="Band Leaders Icon" width="40px" height="30px">
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b class="editable">50,000+</b></label>
|
||||||
|
<p class="align-middle mb-0 editable">Practice Leaders</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_speakers.svg" alt="Speakers Band Icon" width="40px" height="30px">
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b class="editable">6,000+</b></label>
|
||||||
|
<p class="align-middle mb-0 editable">Global Influential Speakers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_center.svg" alt="Band Center Icon" width="40px" height="30px">
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b class="editable">13,000+</b></label>
|
||||||
|
<p class="align-middle mb-0 editable">Expert Center</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_journals.svg" alt="Journals Band Icon" width="40px" height="30px">
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b class="editable">5,000+</b></label>
|
||||||
|
<p class="align-middle mb-0 editable">Medical Journal</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="carousel-nav-button" style="display: none;">
|
||||||
|
<button class="carousel-control-prev" type="button" data-bs-target="#carousel-slider" data-bs-slide="prev">
|
||||||
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Previous</span>
|
||||||
|
</button>
|
||||||
|
<button class="carousel-control-next" type="button" data-bs-target="#carousel-slider" data-bs-slide="next">
|
||||||
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Next</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Specialities Section -->
|
||||||
|
<section id="konectar-specialities" class="konectar-specialities">
|
||||||
|
<div class="container py-lg-4">
|
||||||
|
<div class="row konectar-specialities-list editable">
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Bladder Cancer</li>
|
||||||
|
<li>Brain Cancer</li>
|
||||||
|
<!-- <a class="" href=""> -->
|
||||||
|
<li>Breast Cancer</li>
|
||||||
|
<li>Myeloma</li>
|
||||||
|
<li>Stomach Cancer</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Gastrointestinal Cancer</li>
|
||||||
|
<li>Genitourinary Cancer</li>
|
||||||
|
<li>Leukemia</li>
|
||||||
|
<li>Pancreatic Cancer</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Liver Cancer</li>
|
||||||
|
<li>Lung Cancer</li>
|
||||||
|
<li>Lymphoma</li>
|
||||||
|
<li>Prostate Cancer</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- d-flex justify-content-center -->
|
||||||
|
<div class="row mt-3">
|
||||||
|
<!-- col-12 col-sm-6 col-md-6 col-lg-4 col-xl-3 -->
|
||||||
|
<div class="text-center">
|
||||||
|
<a href="/get-demo/oncology" class="button orange-button rounded-border orange-text bg-button">
|
||||||
|
<!-- <button class="btn text-white "> button-arrow button-icon-css </button>-->
|
||||||
|
Book a Demo
|
||||||
|
<i class="icon-css bi bi-chevron-right"></i>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Brochure Section -->
|
||||||
|
<section id="konectar-brochure">
|
||||||
|
<div class="container-fluid oncology-experts">
|
||||||
|
|
||||||
|
<div class="row h-100">
|
||||||
|
<div class="col-lg-8 offset-lg-4 col-md-8 offset-md-4 d-flex align-items-center">
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-12 d-sm-block d-md-none justify-content-center text-center">
|
||||||
|
<img src="/assets/images/mobile/product/onco_view_similar.png" class="img-fluid brochure-mobile-img onco-brochure-screen-img" alt="View Similar Oncology Experts">
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-8 col-md-8 text-center">
|
||||||
|
<h2 class="konectar-experts-header editable">Find Newer Oncology Experts</h2>
|
||||||
|
<p class="konectar-experts-title"><img src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform gives you access to over <span class="label-bold orange-color"><b class="editable">70,000 Oncology Experts</b></span> carefully curated from millions of data points.</p>
|
||||||
|
<p class="konectar-experts-text font-italic px-lg-4 px-2 editable">The Platform empowers you with rich data that is accurately curated and provides intelligence on various dimensions like speaking engagements, affiliations, publishing and research activities, industry payments details, influencer network and many more.</p>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-brochure-img-block d-flex flex-column align-items-center col-lg-4 col-md-4 mt-lg-5">
|
||||||
|
<img class="konectar-brochure-img img-fluid" src="/assets/images/konectar/oncology/more_about_konectar.png" width="150px" height="200px" alt="konectar oncology brochure">
|
||||||
|
<div class="my-3">
|
||||||
|
<a id="reqstForm1" class="button orange-button button-12 px-2 blueBtn" href="">Request Brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Social Section -->
|
||||||
|
<section id="konectar-social-band">
|
||||||
|
<div class="container-fluid py-4 px-4 py-lg-5 px-lg-5 konectar-social">
|
||||||
|
<div class="konectar-social-band-block row text-left">
|
||||||
|
<div class="col-lg-1"></div>
|
||||||
|
<div class="col-lg-10">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-3 konectar_social_text">
|
||||||
|
<p class="p-oncology"><i class="editable">AI Powered Platform for connecting you to the right <span class="blue-color">Digital Opinion Leaders.</span></i></p><br>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6">
|
||||||
|
<center><img class="img-oncology img-fluid" src="/assets/images/konectar/veterinary/konectar_social_image.png" alt="konectar Social"></center>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 konectar_social_text">
|
||||||
|
<center><img id="konectar_social_image" class="konectar-social-band-img text-center img-fluid" src="/assets/images/konectar/veterinary/konectar_social.png" width="260px" alt="konectar Social"> </center>
|
||||||
|
<div class="col-lg-2 col-md-12 col-md-12">
|
||||||
|
<center><a class="learn-more button-oncology" href="/konectar/social">Learn More</a></center>
|
||||||
|
</div><br>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-1"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Payment Analytics Section -->
|
||||||
|
<section id="konectar-analytics">
|
||||||
|
<div class="container py-3 py-lg-5">
|
||||||
|
<div class="konectar-analytics-header row text-center mb-4">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-analytics-title mb-lg-4 editable">Open Payments Data: Detailed Payments Analytics</h3>
|
||||||
|
<p class="konectar-analytics-text px-lg-5 editable">Understand the <span class="label-bold orange-color mb-4">Industry-HCP engagements</span> through comprehensive analysis of how different companies are partnering with the HCPs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-block row content-block mb-4 px-lg-5">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/find_influencers.png" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3 editable">Find Influencers</label>
|
||||||
|
<p class="band-content text-center px-lg-4 editable">Find Influencers through analytics on payments received by the HCPs from different life-sciences companies</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/understand_competition.png" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3 editable">Understand Competition</label>
|
||||||
|
<p class="band-content text-center px-lg-4 editable">Easily understand how your competition is utilizing the KOLs and understand their spend on different activities</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/market_value.png" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3 editable">Get the Fair Market Value</label>
|
||||||
|
<p class="band-content text-center px-lg-4 editable">Through ready-to-use reports, get the FMV of KOLs for different engagement types</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/oncology" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Discover Section -->
|
||||||
|
<section id="konectar-discover">
|
||||||
|
<div class="container py-4 py-lg-5">
|
||||||
|
<div class="konectar-discover-header row text-center">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-discover-header mb-2 mb-lg-4 editable"><span class="label-bold orange-color">DISCOVER</span> the most influential and impactful <span class="label-bold orange-color">HCPs</span> in the research, diagnosis and treatment of <span class="label-bold orange-color">Oncology</span> conditions.</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-block row">
|
||||||
|
<div class="col-lg-6">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-4 col-lg-12 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/oncology/hcp_referral.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-10 offset-lg-1 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">HCP REFERRAL NETWORKS</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4 editable">Discover Oncology HCP network maps up to three degree of connections, based on patient referral data. You can identify influential HCPs, and Top Prescribers in Oncology.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-4 col-lg-12 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/rising_stars.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-10 offset-lg-1 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">DISCOVER HCP TRENDS</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4 editable">Discover Trends identifies emerging influencers and rising stars by tracking KOL activity over a period of time, expanding the horizon of KOLs to connect with for your planned initiatives.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-button row d-flex justify-content-center mt-4">
|
||||||
|
<div class="col-12 text-center">
|
||||||
|
<a href="/konectar/faq" class="button blue-button">Learn More</a>
|
||||||
|
<a href="/get-demo/oncology" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar KOL Management Section -->
|
||||||
|
<section id="konectar-kol-management">
|
||||||
|
<div class="container py-5 px-lg-5">
|
||||||
|
<div class="konectar-kol-management-header row text-center mb-3 mb-lg-5">
|
||||||
|
<h3 class="konectar-kol-management-text">Why <img src="/assets/images/konectar/images/konectar_logo_white.svg" alt="konectar logo"> KOL Management?</h3>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-block row content-block mb-lg-4 px-lg-4">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_1.png" alt="Why Konectar Image 1">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0 editable">This is a destination with the most wide-ranging information about Oncology medical experts involved in research, treatment and diagnosis of Oncology conditions</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_2.png" alt="Why Konectar Image 2">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0 editable">Expertise-based segmentation and discovery of experts into Global, National and Regional Influence leaders.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_3.png" alt="Why Konectar Image 3">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0 editable">Advanced features and insights on HCPs including intelligent learning and recommendations, network maps, engagement tracking, highly customizable, segmentation-based ranking and more</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a class="button orange-button" href="" id="reqstForm3">Request full brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</KonectarLayout>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,445 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<KonectarLayout title="konectar Oral Health | KOL Management" slug="oralhealth">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css">
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<header id="header" class="oralhealth-header align-items-center">
|
||||||
|
<div id="header-container" class="container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-md-5 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar Oral Health</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/oralhealth/konectar_for_oralhealth.svg" alt="konectar Oral Health"></a>
|
||||||
|
<div class="oralhealth-logo-tag" >Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-8 col-md-7 col-12 nav-section">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block align-self-center">
|
||||||
|
<a href="/get-demo/oralhealth" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content oralhealth">
|
||||||
|
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="konectar-header" class="jumbotron-fluid">
|
||||||
|
<div class="oralhealth-header-banner" style="display:none;"></div>
|
||||||
|
<div class="container-fluid oralhealth-header-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="konectar-header-block col-lg-5 offset-lg-7 col-md-6 offset-md-6 wt-backgorund">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12">
|
||||||
|
<p class="konectar-header-block-text oralhealth-khbt">
|
||||||
|
<img class="konectar-header-block-img" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" alt="konectar logo"> KOL Management Platform – your resource to <span class="orange_color"> Discover, Profile and Engage </span> the right Oral Health Experts.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="get-demo-row row d-flex justify-content-center mb-3 d-sm-block d-md-none">
|
||||||
|
<div class="col-12 col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/oralhealth" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="carousel-slider">
|
||||||
|
<div id="carousel-slider-inner" class="row carousel-inner carousel-desktop konectar-header-block-list mx-0">
|
||||||
|
<div class="col-lg-6 carousel-item active mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img justify-content-center">
|
||||||
|
<img class="" src="/assets/images/homepage/icon_payments.svg" alt="Payments Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>40,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Oral Health Experts & Growing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_journals.svg" alt="Journals Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>1,500+</b></label>
|
||||||
|
<p class="align-middle mb-0">Medical Journal</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_researchers.svg" alt="Researchers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>2,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Researchers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_speakers.svg" alt="Speakers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>1,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Influential Speakers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_center.svg" alt="Band Center Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>2,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Expert Centers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_leaders.svg" alt="Band Leaders Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>1,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Practice Leaders</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="carousel-nav-button">
|
||||||
|
<button class="carousel-control-prev" type="button" data-bs-target="#carousel-slider" data-bs-slide="prev">
|
||||||
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Previous</span>
|
||||||
|
</button>
|
||||||
|
<button class="carousel-control-next" type="button" data-bs-target="#carousel-slider" data-bs-slide="next">
|
||||||
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Next</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Specialities Section -->
|
||||||
|
<section id="konectar-specialities">
|
||||||
|
<div class="container py-lg-4">
|
||||||
|
<div class="row konectar-specialities-list">
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>General Dentistry</li>
|
||||||
|
<li>Periodontics</li>
|
||||||
|
<li>Prosthodontics</li>
|
||||||
|
<li>Endodontics</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Pediatric Dentistry</li>
|
||||||
|
<li>Dental Public Health</li>
|
||||||
|
<li>Cosmetic Dentistry</li>
|
||||||
|
<li>Dental Anesthesiology</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-10 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Dental Sleep Medicine</li>
|
||||||
|
<li>Orofacial Pain Dentistry</li>
|
||||||
|
<li>Oral and Maxillofacial Surgery</li>
|
||||||
|
<li>Orthodontics and Dentofacial Orthopedics</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row d-flex justify-content-center mt-3">
|
||||||
|
<div class="col-12 col-sm-6 col-md-6 col-lg-4 col-xl-3 text-center">
|
||||||
|
<a href="/get-demo/oralhealth" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Brochure Section -->
|
||||||
|
<section id="konectar-brochure">
|
||||||
|
<div class="container-fluid oralhealth-experts">
|
||||||
|
|
||||||
|
<div class="row h-100">
|
||||||
|
<div class="col-lg-8 offset-lg-4 col-md-8 offset-md-4 d-flex align-items-center">
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-12 d-sm-block d-md-none justify-content-center text-center">
|
||||||
|
<img src="/assets/images/mobile/product/oral_experts.png" class="img-fluid brochure-mobile-img oralhealth-brochure-screen-img" alt="Oral Health Experts">
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-8 col-md-8 text-center">
|
||||||
|
<h2 class="konectar-experts-header">Discover Oral Health Experts</h2>
|
||||||
|
<p class="konectar-experts-title"><img src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform gives you access to over <span class="label-bold orange-color"><b>40,000 Oral Health Experts</b></span> carefully curated from millions of data points.</p>
|
||||||
|
<p class="konectar-experts-text font-italic px-lg-4 px-2">The Platform empowers you with rich data that is accurately curated and provides intelligence on various dimensions like speaking engagements, affiliations, publishing and research activities, industry payments details, influencer network and many more.</p>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-brochure-img-block d-flex flex-column align-items-center col-lg-4 col-md-4 mt-lg-5">
|
||||||
|
<img class="konectar-brochure-img img-fluid" src="/assets/images/konectar/oncology/more_about_konectar.png" width="150px" height="200px" alt="konectar oncology brochure">
|
||||||
|
<div class="my-3">
|
||||||
|
<a href="" class="button orange-button button-12 px-2 blueBtn" id="reqstForm1">Request Brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar HCP Landscape Section -->
|
||||||
|
<section id="konectar-hcp-landscape">
|
||||||
|
<div class="container-fluid oralhealth-hcp-landscape py-lg-3">
|
||||||
|
<div class="row ">
|
||||||
|
<img class="img-fluid oralhealth-hcp-lanadscape-img" src="/assets/images/konectar/oralhealth/oralhealth_infographics.png" alt="konectar features - HCP Screening" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Payment Analytics Section -->
|
||||||
|
<section id="konectar-analytics">
|
||||||
|
<div class="container py-3 py-lg-5">
|
||||||
|
<div class="konectar-analytics-header row text-center mb-4">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-analytics-title mb-lg-4">Open Payments Data: Comprehensive Payments Analysis</h3>
|
||||||
|
<p class="konectar-analytics-text px-lg-5">Understand the <span class="label-bold orange-color mb-4">Industry-HCP engagements</span> through comprehensive analysis of how different companies are partnering with the HCPs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-block row content-block mb-4 px-lg-5">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/find_influencers.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Find Influencers</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Find Influencers through analytics on payments received by the HCPs from different life-sciences companies</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/understand_competition.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Understand Competition</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Easily understand how your competition is utilizing the KOLs and understand their spend on different activities</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/market_value.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Get the Fair Market Value</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Through ready-to-use reports, get the FMV of KOLs for different engagement types</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/oralhealth" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Discover Section -->
|
||||||
|
<section id="konectar-discover" class="oralhealth-discover">
|
||||||
|
<div class="container py-4 py-lg-5">
|
||||||
|
<div class="konectar-discover-header row text-center">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-discover-header mb-2 mb-lg-4"><span class="label-bold orange-color">DISCOVER</span> the most influential and impactful <span class="label-bold orange-color">HCPs</span> in the research, diagnosis and treatment of <span class="label-bold orange-color">Oral Health</span> conditions.</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-block row">
|
||||||
|
<div class="col-lg-6">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-4 col-lg-12 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/oralhealth/oral_segmentation.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-10 offset-lg-1 text-center">
|
||||||
|
<p class="konectar-discover-title oralhealth-kdt text-center mt-1">EXPERTISE BASED SEGMENTATION</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-5">konectar's advanced "Expertise-Based Segmentation" capabilities automatically creates a dynamic list of HCPs based on their interests and expertise.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-4 col-lg-12 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/oralhealth/oral_similar.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-10 offset-lg-1 text-center">
|
||||||
|
<p class="konectar-discover-title oralhealth-kdt text-center mt-1">VIEW SIMILAR</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-5">View similar is an automated intelligent recommendation feature which helps user to discover many HCPs based on expertise and experience.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-button row d-flex justify-content-center mt-4">
|
||||||
|
<div class="col-12 text-center">
|
||||||
|
<a href="/konectar/faq" class="button blue-button">Learn More</a>
|
||||||
|
<a href="/get-demo/oralhealth" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar KOL Management Section -->
|
||||||
|
<section id="konectar-kol-management">
|
||||||
|
<div class="container py-5 px-lg-5">
|
||||||
|
<div class="konectar-kol-management-header row text-center mb-3 mb-lg-5">
|
||||||
|
<h3 class="konectar-kol-management-text">Why <img src="/assets/images/konectar/images/konectar_logo_white.svg" alt="Oral Health Experts"> KOL Management?</h3>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-block row content-block mb-lg-4 px-lg-4">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_1.png" alt="Why Konectar Image 1">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">This is a destination with the most wide-ranging information about Oral health medical experts involved in research, treatment and diagnosis of Oral conditions</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/oralhealth/oral_influencers.png" alt="Identify Oral Health">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Identify the Rising Stars and Emerging Influencers with reports that analyze the trends in the professional activities over years</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/oralhealth/oral_leaders.png" alt="Oral Health Patient Referrals">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Identify the Practice Leaders through visual analysis of 3 degrees of connections based on patient referrals</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="#" class="button orange-button" id="reqstForm3">Request full brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</KonectarLayout>
|
|
@ -0,0 +1,445 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<KonectarLayout title="konectar Pain Medicine | KOL Management" slug="painmedicine">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css">
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<header id="header" class="painmedicine-header align-items-center">
|
||||||
|
<div id="header-container" class="container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-md-5 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar Pain Medicine</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/pain_medicine/konectar_for_painmedicine.png" alt="konectar pain medicine"></a>
|
||||||
|
<div class="painmedicine-logo-tag" >Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-8 col-md-7 col-12 nav-section">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block align-self-center">
|
||||||
|
<a href="/get-demo/painmedicine" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content painmedicine">
|
||||||
|
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="konectar-header" class="jumbotron-fluid">
|
||||||
|
<div class="painmedicine-header-banner" style="display:none;"></div>
|
||||||
|
<div class="container-fluid painmedicine-header-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="konectar-header-block col-lg-5 offset-lg-7 col-md-6 offset-md-6 wt-backgorund">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12">
|
||||||
|
<p class="konectar-header-block-text painmedicine-khbt">
|
||||||
|
<img class="konectar-header-block-img" src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform – your resource to <span class="orange_color"> Discover, Profile and Engage </span> the right Pain Medicine Experts.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="get-demo-row row d-flex justify-content-center mb-3 d-sm-block d-md-none">
|
||||||
|
<div class="col-12 col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/painmedicine" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="carousel-slider">
|
||||||
|
<div id="carousel-slider-inner" class="row carousel-inner carousel-desktop konectar-header-block-list mx-0">
|
||||||
|
<div class="col-lg-6 carousel-item active mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img justify-content-center">
|
||||||
|
<img class="" src="/assets/images/homepage/icon_payments.svg" alt="Payments Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>20,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Pain Medicine Experts & Growing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_researchers.svg" alt="Researchers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>2,000+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Researchers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_center.svg" alt="Band Center Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>12,500+</b></label>
|
||||||
|
<p class="align-middle mb-0">Expert Centers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_clinical.svg" alt="Clinical Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>1,200+</b></label>
|
||||||
|
<p class="align-middle mb-0">Clinical Investigators</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_journals.svg" alt="Journals Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>3,500+</b></label>
|
||||||
|
<p class="align-middle mb-0">Medical Journal</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="col-lg-6 carousel-item mb-lg-4">
|
||||||
|
<div class="konectar-header-block-item-img">
|
||||||
|
<img class="" src="/assets/images/konectar/band1/band1_speakers.svg" alt="Speakers Band Icon" />
|
||||||
|
</div>
|
||||||
|
<div class="konectar-header-block-item-text">
|
||||||
|
<label class="align-middle font-weight-bold"><b>1,100+</b></label>
|
||||||
|
<p class="align-middle mb-0">Global Influential Speakers</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="carousel-nav-button">
|
||||||
|
<button class="carousel-control-prev" type="button" data-bs-target="#carousel-slider" data-bs-slide="prev">
|
||||||
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Previous</span>
|
||||||
|
</button>
|
||||||
|
<button class="carousel-control-next" type="button" data-bs-target="#carousel-slider" data-bs-slide="next">
|
||||||
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||||
|
<span class="visually-hidden">Next</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Specialities Section -->
|
||||||
|
<section id="konectar-specialities" class="painmedicine-specialities">
|
||||||
|
<div class="container py-lg-4">
|
||||||
|
<div class="row konectar-specialities-list">
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Arthritis Pain</li>
|
||||||
|
<li>Back Pain</li>
|
||||||
|
<li>Chronic Pain</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Fibromyalgia</li>
|
||||||
|
<li>Neck Pain</li>
|
||||||
|
<li>Neuropathic Pain</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Post-surgical Pain</li>
|
||||||
|
<li>Peripheral neuropathy</li>
|
||||||
|
<li>Opioid Use Disorder</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row d-flex justify-content-center mt-3">
|
||||||
|
<div class="col-12 col-sm-6 col-md-6 col-lg-4 col-xl-3 text-center">
|
||||||
|
<a href="/get-demo/painmedicine" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Brochure Section -->
|
||||||
|
<section id="konectar-brochure">
|
||||||
|
<div class="container-fluid painmedicine-experts">
|
||||||
|
<div class="row d-sm-block d-md-none text-center konectar-brochure-image justify-content-center">
|
||||||
|
<img class="img-fluid" src="/assets/images/mobile/product/pain_medicine_experts.png" alt="konectar pain medicine experts network" width="80%"/>
|
||||||
|
</div>
|
||||||
|
<div class="row h-100">
|
||||||
|
<div class="col-lg-8 offset-lg-4 col-md-8 offset-md-4 d-flex align-items-center">
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-lg-8 col-md-8 text-center">
|
||||||
|
<h2 class="konectar-experts-header blue-color">Find Newer Pain Medicine Experts</h2>
|
||||||
|
<p class="konectar-experts-title blue-color"><img src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> KOL Management Platform gives you access to over <span class="label-bold orange-color"><b>20,000 Pain Medicine Experts</b></span> carefully curated from millions of data points.</p>
|
||||||
|
<p class="konectar-experts-text font-italic px-lg-4 px-2">The Platform empowers you with rich data that is accurately curated and provides intelligence on various dimensions like speaking engagements, affiliations, publishing and research activities, industry payments details, influencer network and many more.</p>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-brochure-img-block d-flex flex-column align-items-center col-lg-4 col-md-4 mt-lg-5">
|
||||||
|
<img class="konectar-brochure-img img-fluid" src="/assets/images/konectar/oncology/more_about_konectar.png" width="150px" height="200px" alt="konectar oncology brochure">
|
||||||
|
<div class="my-3">
|
||||||
|
<a class="button orange-button button-12 px-2 blueBtn" href="#" id="reqstForm1">Request Brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Payment Analytics Section -->
|
||||||
|
<section id="konectar-analytics">
|
||||||
|
<div class="container py-3 py-lg-5">
|
||||||
|
<div class="konectar-analytics-header row text-center mb-4">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-analytics-title mb-lg-4">Payments Analytics: In-Depth Open Payments Data Insights</h3>
|
||||||
|
<p class="konectar-analytics-text px-lg-5">Understand the <span class="label-bold orange-color mb-4">Industry-HCP engagements</span> through comprehensive analysis of how different companies are partnering with the HCPs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-block row content-block mb-4 px-lg-5">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/find_influencers.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Find Influencers</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Find Influencers through analytics on payments received by the HCPs from different life-sciences companies</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/understand_competition.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Understand Competition</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Easily understand how your competition is utilizing the KOLs and understand their spend on different activities</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/market_value.png" alt="listen" />
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-2 py-lg-3">Get the Fair Market Value</label>
|
||||||
|
<p class="band-content text-center px-lg-4">Through ready-to-use reports, get the FMV of KOLs for different engagement types</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-analytics-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="/get-demo/painmedicine" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Discover Section -->
|
||||||
|
<section id="konectar-discover" class="painmedicine-discover">
|
||||||
|
<div class="container py-4 py-lg-5">
|
||||||
|
<div class="konectar-discover-header row text-center">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-discover-header mb-2 mb-lg-4"><span class="label-bold orange-color">DISCOVER</span> the most influential and impactful <span class="label-bold orange-color">HCPs</span> in the research, diagnosis and treatment of <span class="label-bold orange-color">Pain Management</span> conditions.</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-block row">
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/pain_medicine/discover_trends.png" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">DISCOVER HCP TRENDS</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Identify the Rising stars/Upcoming experts and also analyze the landscape of experts.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/pain_medicine/view_similar.png" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">VIEW SIMILAR</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Discover more experts in the field through automated recommendations of newer experts.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4 px-lg-4">
|
||||||
|
<div class="row konectar-discover-block-white py-lg-4">
|
||||||
|
<div class="col-4 col-lg-12 py-lg-4 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/pain_medicine/network_maps.png" width="90px" height="90px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 py-lg-4 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">NETWORK/GEO MAPS</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">Understand the KOL Collaborations and their Influence in the medical community.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-button row d-flex justify-content-center mt-4">
|
||||||
|
<div class="col-12 text-center">
|
||||||
|
<a class="button blue-button" href="/konectar/faq">Learn More</a>
|
||||||
|
<a href="/get-demo/painmedicine" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar KOL Management Section -->
|
||||||
|
<section id="konectar-kol-management">
|
||||||
|
<div class="container py-5 px-lg-5">
|
||||||
|
<div class="konectar-kol-management-header row text-center mb-3 mb-lg-5">
|
||||||
|
<h3 class="konectar-kol-management-text">Why <img src="/assets/images/konectar/images/konectar_logo_white.svg" alt="konectar logo"> KOL Management?</h3>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-block row content-block mb-lg-4 px-lg-4">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_1.png" alt="Why Konectar Image 1">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">This is a destination with the most wide-ranging information about Pain Medicine medical experts involved in research, treatment and diagnosis of Pain Management conditions</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_2.png" alt="Why Konectar Image 2">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Expertise-based segmentation and discovery of experts into Global, National and Regional Influence leaders.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block band-img d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/images/why_konectar_3.png" alt="Why Konectar Image 3">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Advanced features and insights on HCPs including intelligent learning and recommendations, network maps, engagement tracking, highly customizable, segmentation-based ranking and more</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="#" class="button orange-button" id="reqstForm3">Request full brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</KonectarLayout>
|
|
@ -0,0 +1,269 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<KonectarLayout title="konectar Social | Digital Opinion Leaders (DOLs)" slug="social">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css">
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<header id="header" class="align-items-center">
|
||||||
|
<div id="header-container" class="social-konectar-header container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row justify-content-center align-items-center">
|
||||||
|
<div class="col-lg-4 col-md-5 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar Social</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/social/konectar_social_logo_desktop.svg" alt="konectar Social"></a>
|
||||||
|
<div class="social-logo-tag" >Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-8 col-md-7 col-12 nav-section">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block">
|
||||||
|
<a href="/get-demo/social" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content social">
|
||||||
|
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="konectar-header" class="jumbotron-fluid">
|
||||||
|
<div class="social-header-banner" style="display:none;"></div>
|
||||||
|
<div class="container-fluid social-header-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="konectar-header-block social-khbl col-lg-5 col-md-5">
|
||||||
|
<div class="row align-items-center justify-content-center gx-0">
|
||||||
|
<div class="col-lg-7 col-md-7 col-12 pt-lg-4">
|
||||||
|
<h2 class="social-band-text"> AI-Powered Platform for connecting you to the right <br><span class="bl-color"><a title="Digital Opinion Leader" href="/konectar/virtualengagement" target="_blank"> Digital Opinion Leaders</a>.</span> </h2>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Brochure Section -->
|
||||||
|
<section id="konectar-brochure">
|
||||||
|
<div class="container-fluid social-experts py-4">
|
||||||
|
<div class="row align-items-center justify-content-center h-100">
|
||||||
|
<div class="col-lg-5 social-content text-center">
|
||||||
|
<iframe width="430" height="310" src="https://www.youtube.com/embed/2V9LS18m_bs" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 d-flex align-items-center">
|
||||||
|
<div class="row justify-content-center align-items-center">
|
||||||
|
<div class="col-lg-11 text-center">
|
||||||
|
<h3 class="konectar-experts-header bl-color"><span class="orange_color">DISCOVER</span> the most influential and impactful <span class="orange_color">Digital Opinion Leaders</span></h3>
|
||||||
|
<p class="social-experts-title pt-lg-3 bl-color">Get complete Social Media updates of DOLs of your interest and utilize their expertise and sphere of
|
||||||
|
influence to develop an effective influencer strategy for your product marketing.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row d-flex justify-content-center mt-3">
|
||||||
|
<div class="col-12 col-sm-6 col-md-6 col-lg-4 col-xl-3 text-center">
|
||||||
|
<a href="/get-demo/social" class="button orange-button rounded-border orange-text bg-button">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar HCP Section -->
|
||||||
|
<section id="konectar-hcp-landscape" class="social-hcp-band">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row justify-content-center align-items-center">
|
||||||
|
<div class="col-lg-10 text-center d-flex align-items-center">
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p class="social-hcp-content bl-color">konectar social automatically crawls the social media activity of healthcare influencers and ranks
|
||||||
|
them based on important metrics, such as total reach, post counts, and engagement.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Social Section -->
|
||||||
|
<section id="konectar-social-band">
|
||||||
|
<div class="container-fluid social-band py-4 px-4 py-lg-5 px-lg-5">
|
||||||
|
<div class="row justify-content-center align-items-center social-band-content">
|
||||||
|
<div class="col-lg-5 col-md-5">
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p class="bl-color ps-3">Social Media Analytics enables you to track real-time social media activities of Healthcare Opinion Leaders by intelligent categories like People, Disease Conditions, Products, Technologies, Companies, and Organizations.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 col-md-7 text-center">
|
||||||
|
<img src="/assets/images/konectar/social/media_analytics.svg" width="80%" alt="Social Media Analytics Icon">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Konectar Discover Section -->
|
||||||
|
<section id="konectar-analytics">
|
||||||
|
<div class="container-fluid social-analytics-band">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar KOL Management Section -->
|
||||||
|
<section id="konectar-kol-management">
|
||||||
|
<div class="container-fluid py-5 px-lg-5 social-why-konectar">
|
||||||
|
<div class="row text-center mb-3 why-konectar-image justify-content-center pb-4 gx-sm-0">
|
||||||
|
<img src="/assets/images/konectar/social/why_konectar.svg" width="80%" alt="why konectar">
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-block row content-block px-lg-4 gx-sm-0">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row content-block-row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/social/media_real_time.svg" alt="Social Media Real Time Icon">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<h6>Real-time Social Feeds</h6>
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Harness the power of social media in healthcare. Get real-time updates on your HCPs/HCOs' social media channels to understand who is talking about topics relevant to you.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row content-block-row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/social/media_opinion_leader.svg" alt="Social Media Opinion Leader Icon">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<h6>Find Top Digital Opinion Leaders</h6>
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">AI-Powered konectar Social identifies top influencers based on social media reach or engagement. Forge strategic partnerships with them to amplify your brand's presence.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row content-block-row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/social/media_intel_analytics.svg" alt="Social Media Intelligence Analytics Icon">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<h6>Intelligent Analytics</h6>
|
||||||
|
<!-- 05-09-2023 -->
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Utilize the potential of data analysis to identify prominent healthcare experts with a strong online presence. Get custom reports on DOLs that can be the key pillars of your brand.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</KonectarLayout>
|
|
@ -0,0 +1,350 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<KonectarLayout title="konectar Veterinary | KOL Management" slug="veterinary">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css">
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<header id="header" class="veterinary-header align-items-center">
|
||||||
|
<div id="header-container" class="container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-md-5 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar Veterinary</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/veterinary/konectar_veterinary.svg" alt="konectar veterinary"></a>
|
||||||
|
<div class="veterinary-logo-tag" >Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-8 col-md-7 col-12 nav-section">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block align-self-center">
|
||||||
|
<a href="/get-demo/veterinary" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content veterinary">
|
||||||
|
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="konectar-header" class="jumbotron-fluid">
|
||||||
|
<div class="container-fluid veterinary-header-band">
|
||||||
|
<div class="row justify-content-center align-items-center">
|
||||||
|
<div class="konectar-header-block col-lg-5">
|
||||||
|
<!-- 04-04-2024 -->
|
||||||
|
<h2 class="konectar-header-block-title veterinary-khbt text-center">konectar's Veterinary Engagement Tools</h2>
|
||||||
|
<p class="konectar-header-block-title veterinary-khbt text-center">AI Powered KOL Management Platform for connecting you to the right <span class="label-bold">Veterinary Experts.</span></p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Brochure Section -->
|
||||||
|
<section id="konectar-brochure">
|
||||||
|
<div class="container-fluid veterinary-experts">
|
||||||
|
<div class="row h-100 align-items-center">
|
||||||
|
<div class="col-sm-12 col-md-4 konectar-brochure-image text-center">
|
||||||
|
<img src="/assets/images/konectar/veterinary/discover_screen.png" alt="konectar Discover features" width="" />
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-md-8 d-flex align-items-center">
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-md-8 text-center">
|
||||||
|
<h3 class="konectar-experts-header vet-experts-header bl-color">DISCOVER VETERINARY EXPERTS</h3>
|
||||||
|
<p class="konectar-experts-title"><img src="/assets/images/konectar/logo/aissel_konectar_logo.svg" width="80px" height="20px" alt="konectar logo"> Veterinary Platform gives you access to Veterinary Experts carefully curated from millions of data points.</p>
|
||||||
|
<p class="konectar-experts-text font-italic px-lg-4 px-2">The Platform empowers you with rich data that is accurately curated and provides intelligence on various dimensions like speaking engagements, affiliations, publishing and research activities, industry payments details, influencer network and many more.</p>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-brochure-img-block d-flex flex-column align-items-center col-md-4 mt-lg-5 mt-md-2">
|
||||||
|
<img class="konectar-brochure-img img-fluid" src="/assets/images/konectar/oncology/more_about_konectar.png" width="150px" height="200px" alt="konectar oncology brochure">
|
||||||
|
<div class="my-3">
|
||||||
|
<a class="button orange-button button-12 px-2 blueBtn" href="#" id="reqstForm1">Request Brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Specialities Section -->
|
||||||
|
<section id="konectar-specialities" class="veterinary-specialities">
|
||||||
|
<div class="container py-lg-4">
|
||||||
|
<div class="konectar-specialities-list-title text-center pb-lg-4">
|
||||||
|
<img class="" src="/assets/images/konectar/veterinary/konectar_veterinary_logo.png" alt="konectar veterinary" />
|
||||||
|
</div>
|
||||||
|
<div class="row konectar-specialities-list">
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-5 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Feline Medicine</li>
|
||||||
|
<li>Veterinary Dermatology</li>
|
||||||
|
<li>Veterinary Nutrition</li>
|
||||||
|
<li>Veterinary Oncology</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-7 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Veterinary Surgery</li>
|
||||||
|
<li>Veterinary Endocrinology</li>
|
||||||
|
<li>Veterinary Anesthesiology</li>
|
||||||
|
<li>Veterinary Ophthalmology</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-6 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Veterinary Neurology</li>
|
||||||
|
<li>Veterinary Cardiology</li>
|
||||||
|
<li>Preventive Medicine</li>
|
||||||
|
<li>Clinical Pathology</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row d-flex justify-content-center mt-3">
|
||||||
|
<div class="col-12 col-lg-3 text-center">
|
||||||
|
<a href="/get-demo/veterinary" class="button orange-button rounded-border orange-text bg-button book-demo-btn">Book a Demo <i class="icon-css bi bi-chevron-right"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar HCP Landscape Section -->
|
||||||
|
<section id="konectar-hcp-landscape">
|
||||||
|
<div class="container-fluid veterinary-hcp-landscape py-3">
|
||||||
|
<div class="row">
|
||||||
|
<p class="konectar-landscape-text veterinary-klt text-center py-lg-3">Get Comprehensive and Up-to-date data of top Veterinary Experts</p>
|
||||||
|
<img class="text-center img-fluid konectar-landscape-img" src="/assets/images/konectar/veterinary/infographics.png" alt="konectar features" >
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Social Section -->
|
||||||
|
<section id="konectar-social-band" class="veterinary-social-band">
|
||||||
|
<div class="container py-4 px-4 py-lg-5 px-lg-5">
|
||||||
|
<div class="konectar-social-band-block row text-left">
|
||||||
|
<div class="col-lg-3 d-flex flex-column align-content-center justify-content-center">
|
||||||
|
<p><i>AI Powered Platform for connecting you to the right <span class="blue-color">Digital Opinion Leaders.</span></i></p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 text-center">
|
||||||
|
<img class="img-fluid" src="/assets/images/konectar/veterinary/konectar_social_image.png" width="290px" height="180px" alt="konectar - Social Media Analytics">
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 d-flex flex-column align-content-center justify-content-center">
|
||||||
|
<img class="konectar-social-band-img text-center" src="/assets/images/konectar/veterinary/konectar_social.png" width="260px" alt="konectar Social">
|
||||||
|
<div class="row mt-2 mt-lg-3">
|
||||||
|
<div class="col-md-2">
|
||||||
|
<a href="/konectar/social" class="learn-more" href="">Learn More</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Konectar Discover Section -->
|
||||||
|
<section id="konectar-discover" class="veterinary-discover">
|
||||||
|
<div class="container py-4 py-lg-5">
|
||||||
|
<div class="konectar-discover-header row text-center">
|
||||||
|
<div class="col-lg-10 offset-lg-1">
|
||||||
|
<h3 class="konectar-discover-header mb-2 mb-lg-4"><span class="label-bold orange-color">DISCOVER</span> the most influential and impactful <span class="label-bold orange-color">Veterinary Experts</span> in the research and treatment of <span class="label-bold orange-color">Veterinary</span> conditions.</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-block row">
|
||||||
|
<div class="col-lg-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-4 col-lg-12 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/images/rising_stars.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">DISCOVER TRENDS</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4"> Discover Trends identifies emerging influencers and rising stars by tracking KOL activity over a period of time, expanding the horizon of KOLs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-4 col-lg-12 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/veterinary/view_similar.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">VIEW SIMILAR</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4"> View similar is an automated intelligent recommendation feature which helps you to discover newer Veterinary Experts based on expertise and experience.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-4 col-lg-12 d-flex justify-content-center find-influencers">
|
||||||
|
<img class="mx-auto d-block " src="/assets/images/konectar/veterinary/hcp_tiering.png" width="200px" height="190px" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-lg-12 text-center">
|
||||||
|
<p class="konectar-discover-title text-center mt-1">KOL TIERING</p>
|
||||||
|
<p class="konectar-discover-description text-center mx-lg-4">konectar analyses different parameters and segments your KOLs into tiers based on their speaking activity, industry consulting, editorial position, research activity and years of experience.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="konectar-discover-button row d-flex justify-content-center mt-4">
|
||||||
|
<div class="col-12 text-center">
|
||||||
|
<a class="button blue-button" href="/konectar/faq">Learn More</a>
|
||||||
|
<a href="/get-demo/veterinary" class="ms-1 button orange-button">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar KOL Management Section -->
|
||||||
|
<section id="konectar-kol-management">
|
||||||
|
<div class="container py-5 px-lg-5">
|
||||||
|
<div class="konectar-kol-management-header row text-center mb-3 mb-lg-5">
|
||||||
|
<h3 class="konectar-kol-management-text">Why <img src="/assets/images/konectar/images/konectar_logo_white.svg" alt="konectar logo">?</h3>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-block row content-block mb-lg-4 px-lg-4">
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block band-img d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/veterinary/why_konectar_v1.svg" alt="Why Konectar Veterinary Image 1">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">This is a destination with the most wide-ranging information about Veterinary experts involved in research, treatment and diagnosis of Veterinary conditions.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block band-img d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/veterinary/why_konectar_v2.svg" alt="Why Konectar Veterinary Image 2">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">A robust platform with Built-in CRM features, advanced network visualizations and data analytics, offers flexibility to customers to customize the platform.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-block-item col-12 col-lg-4 col-md-4 col-sm-12 mb-4">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 mb-lg-4 band-image-block band-img d-flex justify-content-center">
|
||||||
|
<img class="" src="/assets/images/konectar/veterinary/why_konectar_v3.svg" alt="Why Konectar Veterinary Image 3">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<p class="band-content text-center px-lg-4 mb-0">Get the complete Social Media updates of KOLs of your interest and develop an effective influencer strategy for your product marketing.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-kol-management-button row">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<a href="#" id="reqstForm3" class="button orange-button">Request full brochure</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</KonectarLayout>
|
|
@ -0,0 +1,405 @@
|
||||||
|
---
|
||||||
|
import KonectarLayout from "../../layouts/KonectarLayout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<KonectarLayout title="KOL Management Software: konectar Virtual Engagement" slug="virtualengagement">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
|
||||||
|
<!-- ∈∈∈ To ∋∋ Products pages-->
|
||||||
|
<section id="topbar" class="d-flex align-items-center konectar-topbar">
|
||||||
|
<div class="container-fluid d-flex justify-content-end">
|
||||||
|
<div class="d-sm-flex d-xs-flex align-items-center px-lg-4 px-md-3 px-sm-3 px-0">
|
||||||
|
<!-- d-xs-block d-sm-block -->
|
||||||
|
<a class="d-xs-block d-sm-block d-md-block w-border" href="/home">HOME</a>
|
||||||
|
<!-- <a class="phone_num" href="tel:+13479668181"><img
|
||||||
|
src="/assets/images/top_phone.png" alt="Aissel Phone">+1 347 966
|
||||||
|
8181</a> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-block d-sm-block d-md-none -->
|
||||||
|
<div class="d-none">
|
||||||
|
<link rel="stylesheet" href="/assets/css/font-awesome/4.4.0/css/font-awesome.min.css">
|
||||||
|
<nav id="navbar" class="navbar primary-navbar popup-navbar justify-content-md-end">
|
||||||
|
<ul class="ms-auto primary-top-home-menu">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/home">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/products">Products</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/data-services">Data Services</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/resources/articles">Resources</a>
|
||||||
|
</li>
|
||||||
|
<li id="mobile-nav1" class="nav-item dropdown d-block d-sm-block d-md-none konectar-item">
|
||||||
|
<!-- d-lg-block d-sm-none -->
|
||||||
|
<a class="nav-link menu-dropdown-products-link" href="/konectar/kol-management" onclick= "window.location.href='/konectar/kol-management'"
|
||||||
|
style="width:90%;">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<i class="fa fa-caret-down menu-mobile-products dropdown-toggle" id="navbarDropdown" data-bs-toggle="dropdown" aria-hidden="true" aria-expanded="false"></i>
|
||||||
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/support">Support</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/about-us">About</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item d-none">
|
||||||
|
<a class ="nav-link" href="/blog">Blog</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="mobile-menu-block">
|
||||||
|
<i class="bi mobile-nav-toggle bi-list"></i>
|
||||||
|
<span class="mobile-menu-text d-none d-md-none">Menu</span>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
window.onorientationchange = function() { window.location.reload(); };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/assets/css/konectar.css">
|
||||||
|
<!-- ∈∈∈ Header ∋∋∋ -->
|
||||||
|
<header id="header" class="align-items-center">
|
||||||
|
<div id="header-container" class="container-fluid align-items-center justify-content-between">
|
||||||
|
<div class="row justify-content-center align-items-center">
|
||||||
|
<div class="col-lg-4 col-md-5 col-12 logo-section py-2">
|
||||||
|
<!-- image logo -->
|
||||||
|
<h1 class="ais-logo-block" style="display:none;">konectar Virtual Engagement</h1>
|
||||||
|
<a href="" class="logo"><img class="p-0 konectar-logo img-fluid" src="/assets/images/konectar/virtualEngagement/konectar_virtual_engagement.png" alt="konectar Virtual Engagement"></a>
|
||||||
|
<div class="virtualengagement-logo-tag" >Connecting Life Sciences Experts</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-8 col-md-7 col-12 nav-section">
|
||||||
|
<div class="navbar-section container-fluid d-flex justify-content-end h-100">
|
||||||
|
<div class="demo-button d-none d-sm-block">
|
||||||
|
<a href="/get-demo/virtualengagement" class="button orange-button">Book a Live Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="konectar-main" class="content virtualengagement">
|
||||||
|
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="konectar-header" class="jumbotron-fluid">
|
||||||
|
<div class="virtual-eng-header-banner" style="display:none;"></div>
|
||||||
|
<div class="container-fluid virtual-header-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="konectar-header-block col-lg-6">
|
||||||
|
<div class="row align-items-center justify-content-start">
|
||||||
|
<div class="col-lg-7 col-md-6 pt-lg-4 ps-5">
|
||||||
|
<h2 class="virtual-band-text">Efficient and Compliant Online Engagement Platform for Life Sciences Companies <br><br></h2>
|
||||||
|
<span class="blue_color virtual-band-subtext">konectar: Transforming Virtual Engagement</span>
|
||||||
|
<!-- <h2 class="virtual-band-text">konectar: Transforming Virtual Engagement</h2> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-5 col-md-7 my-3 text-center d-sm-block d-md-none">
|
||||||
|
<a href="/get-demo/virtualengagement" class="button orange-button button-12 px-5 button-vpc text-center" href="#">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Virtual Platform Section -->
|
||||||
|
<section id="konectar-virtual-platform">
|
||||||
|
<div class="container-fluid virtual-platform-band">
|
||||||
|
<div class="row h-100 justify-content-center align-items-center">
|
||||||
|
<div class="col-xl-6 col-lg-6 col-md-6 virtual-platform-content px-3 pt-3">
|
||||||
|
<p class="orange_color font-vpcoc">Eliminate your wait and travel times with konectar's Virtual Engagement Platform</p>
|
||||||
|
<p class="bl-color font-vpcbc">konectar's <a title="Virtual Engagement" href="/konectar/kol-management" target="_blank">Virtual Engagement Platform</a> is a highly robust and compliant platform that enables you to organize online meetings and virtual advisory boards with Healthcare Professionals.</p>
|
||||||
|
<div class="col-lg-5 col-md-7 my-3">
|
||||||
|
<a href="/get-demo/virtualengagement" class="button orange-button button-12 px-5 button-vpc text-center" href="#">Book a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- d-none d-sm-block -->
|
||||||
|
<div class="col-xl-6 col-lg-6 col-md-6 virtual-platform-image text-center">
|
||||||
|
<img src="/assets/images/konectar/virtualEngagement/band_platform_img.png" width="70%" alt="konectar Virtual Engagement Platform" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar HCP Management -->
|
||||||
|
<section id="konectar-hcp-band">
|
||||||
|
<div class="container virtual-hcp-band">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 text-center py-lg-4">
|
||||||
|
<h3 class="campaign-hcp-title"><b>Fe<span class="highlight my-3">atur</span>es</b></h3>
|
||||||
|
<p class="campaign-hcp-subtext">Make your <a title="HCP engagement" href="/konectar/social" target="_blank">HCP engagements</a> more impactful and compliant</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row pb-5 align-items-center justify-content-center">
|
||||||
|
<div class="col-12 col-lg-3 col-md-12 mt-lg-4 mt-2 d-flex flex-lg-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-lg-3">
|
||||||
|
<img class="p-3" src="/assets/images/konectar/virtualEngagement/feature_01.svg" alt="Virtual Engagement Feature Icon 1" >
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-lg-2">
|
||||||
|
<label class="hcp-management-title fw-bold">Video Conference</label>
|
||||||
|
<p class="hcp-management-subtext">Experience face to face meetings virtually using our high resolution video conferencing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-3 col-md-12 mt-lg-4 mt-2 d-flex flex-lg-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-lg-3">
|
||||||
|
<img class="p-3" src="/assets/images/konectar/virtualEngagement/feature_02.svg" alt="Virtual Engagement Feature Icon 2" >
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-lg-2">
|
||||||
|
<label class="hcp-management-title fw-bold">Screenshare</label>
|
||||||
|
<p class="hcp-management-subtext">With one click screen sharing, make your presentation more effective and compelling</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-3 col-md-12 mt-lg-4 mt-2 d-flex flex-lg-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-lg-3">
|
||||||
|
<img class="p-3" src="/assets/images/konectar/virtualEngagement/feature_03.svg" alt="Virtual Engagement Feature Icon 3" >
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-lg-2">
|
||||||
|
<label class="hcp-management-title fw-bold" >Real time Virtual Engagement</label>
|
||||||
|
<p class="hcp-management-subtext">Schedule one on one or group meetings virtually with your HCPs anytime, anywhere</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-3 col-md-12 mt-lg-4 mt-2 d-flex flex-lg-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-lg-3">
|
||||||
|
<img class="p-3" src="/assets/images/konectar/virtualEngagement/feature_04.svg" alt="Virtual Engagement Feature Icon 4" >
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-lg-2">
|
||||||
|
<label class="hcp-management-title fw-bold" >Recording</label>
|
||||||
|
<p class="hcp-management-subtext">Easily record your meetings and archive them in video library for future access</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-3 col-md-12 mt-lg-4 mt-2 d-flex flex-lg-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-lg-3">
|
||||||
|
<img class="p-3" src="/assets/images/konectar/virtualEngagement/feature_05.svg" alt="Virtual Engagement Feature Icon" >
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-lg-2">
|
||||||
|
<label class="hcp-management-title fw-bold" >Document Manager</label>
|
||||||
|
<p class="hcp-management-subtext">Store all the documents/presentations on cloud and access it whenever required</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-3 col-md-12 mt-lg-4 mt-2 d-flex flex-lg-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-lg-3">
|
||||||
|
<img class="p-3" src="/assets/images/konectar/virtualEngagement/feature_06.svg" alt="Virtual Engagement Feature Icon 6" >
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-lg-2">
|
||||||
|
<label class="hcp-management-title fw-bold" >Integrated MailBox</label>
|
||||||
|
<p class="hcp-management-subtext">Send automated meeting invitations to HCPs via integrated mailbox</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-3 col-md-12 mt-lg-4 mt-2 d-flex flex-lg-column align-items-center">
|
||||||
|
<div class="hcp-management-icon py-lg-3">
|
||||||
|
<img class="p-3" src="/assets/images/konectar/virtualEngagement/feature_07.svg" alt="Virtual Engagement Feature Icon 7" >
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content pt-lg-2">
|
||||||
|
<label class="hcp-management-title fw-bold">Data Privacy and Compliance</label>
|
||||||
|
<p class="hcp-management-subtext">Seamlessly organize your virtual meetings without worrying about compliance</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Konectar Social Section -->
|
||||||
|
<section id="konectar-social-band">
|
||||||
|
<div class="container-fluid virtual-social-band py-4 px-4 py-lg-5 px-lg-5">
|
||||||
|
<div class="row justify-content-center align-items-center">
|
||||||
|
<div class="col-lg-5 d-flex flex-column align-content-center justify-content-center">
|
||||||
|
<img src="/assets/images/konectar/virtualEngagement/band_social.png" class="img-fluid virtual-social-band-img" alt="Virtual social band image">
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-5 text-start">
|
||||||
|
<h5 class="virtual-social-title">Conduct Virtual Advisory Board</h5>
|
||||||
|
<p class="virtual-social-text">Collaborate with HCPs for productive discussions using konectar's Virtual Advisory Board Meetings</p>
|
||||||
|
<p class="virtual-social-subtext">konectar's Virtual Engagement Platform allows you to efficiently organize Virtual Advisory Boards and help you to connect with HCPs to support your marketing and educational activities.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Virtual Key Features Section -->
|
||||||
|
<section id="virtual-key-features">
|
||||||
|
<div class="container-fluid virtual-key-features">
|
||||||
|
<div class="row justify-content-center align-items-center">
|
||||||
|
<h5 class="virtual-social-title text-center">Key Features</h5>
|
||||||
|
<div class="col-lg-2 col-6">
|
||||||
|
<div class="hcp-management-icon py-2 text-center">
|
||||||
|
<img src="/assets/images/konectar/virtualEngagement/key_features_01.svg" alt="Virtual Engagement Key Features Icon 1" width="75px">
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content text-center">
|
||||||
|
<label class="key-feature-tile">Discussion Forums</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-2 col-6">
|
||||||
|
<div class="hcp-management-icon py-2 text-center">
|
||||||
|
<img src="/assets/images/konectar/virtualEngagement/key_features_02.svg" alt="Virtual Engagement Key Features Icon" width="75px">
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content text-center">
|
||||||
|
<label class="key-feature-tile">Presentations</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-2 col-6">
|
||||||
|
<div class="hcp-management-icon py-2 text-center">
|
||||||
|
<img src="/assets/images/konectar/virtualEngagement/key_features_03.svg" alt="Virtual Engagement Key Features Icon 3" width="75px">
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content text-center">
|
||||||
|
<label class="key-feature-tile">Surveys and Polls</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-2 col-6">
|
||||||
|
<div class="hcp-management-icon py-2 text-center">
|
||||||
|
<img src="/assets/images/konectar/virtualEngagement/key_features_04.svg" alt="Virtual Engagement Key Features Icon 4" width="75px">
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content text-center">
|
||||||
|
<label class="key-feature-tile">Document Manager</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-2 col-6">
|
||||||
|
<div class="hcp-management-icon py-2 text-center">
|
||||||
|
<img src="/assets/images/konectar/virtualEngagement/key_features_05.svg" alt="Virtual Engagement Key Features Icon 5" width="75px">
|
||||||
|
</div>
|
||||||
|
<div class="hcp-management-content text-center">
|
||||||
|
<label class="key-feature-tile">Generate Insights</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Virtual Insights Section -->
|
||||||
|
<section id="virtual-insights-band">
|
||||||
|
<div class="container-fluid virtual-insights-band">
|
||||||
|
<h3 class="light-blue text-center font-vib pt-5 pb-3">Gain More insights! Save time & Money</h3>
|
||||||
|
<div class="row justify-content-center align-items-center gain-more-section pb-5">
|
||||||
|
<div class="col-lg-2 col-6 px-0">
|
||||||
|
<div class="image-block left-border-radius no-lbr color-one text-center d-flex">
|
||||||
|
<img class="" src="/assets/images/konectar/virtualEngagement/info_01.svg" alt="Virtual Engagement Info Icon 1" width="100%" />
|
||||||
|
</div>
|
||||||
|
<div class="insight-content text-center">
|
||||||
|
<span class="insight-content-title text-color-one py-3">Welcome the Advisory Board</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-2 col-6 px-0">
|
||||||
|
<div class="image-block color-two text-center d-flex">
|
||||||
|
<img src="/assets/images/konectar/virtualEngagement/info_02.svg" alt="Virtual Engagement Info Icon 2" width="100%" />
|
||||||
|
</div>
|
||||||
|
<div class="insight-content text-center">
|
||||||
|
<span class="insight-content-title text-color-two py-lg-2 py-md-3 py-sm-3 new-mob">Share the objective of the Advisory Board Meeting</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-2 col-6 px-0">
|
||||||
|
<div class="image-block color-one text-center d-flex">
|
||||||
|
<img src="/assets/images/konectar/virtualEngagement/info_03.svg" alt="Virtual Engagement Info Icon 3" width="100%" />
|
||||||
|
</div>
|
||||||
|
<div class="insight-content text-center">
|
||||||
|
<span class="insight-content-title text-color-one py-3">Get Insights from the Experts</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-2 col-6 px-0">
|
||||||
|
<div class="image-block color-two text-center d-flex">
|
||||||
|
<img src="/assets/images/konectar/virtualEngagement/info_04.svg" alt="Virtual Engagement Info Icon 4" width="100%" />
|
||||||
|
</div>
|
||||||
|
<div class="insight-content text-center">
|
||||||
|
<span class="insight-content-title text-color-two py-3">Generate Summary and Reports</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-2 col-6 px-0">
|
||||||
|
<div class="image-block right-border-radius color-one text-center d-flex">
|
||||||
|
<img src="/assets/images/konectar/virtualEngagement/info_05.svg" alt="Virtual Engagement Info Icon 5" width="100%" />
|
||||||
|
</div>
|
||||||
|
<div class="insight-content text-center">
|
||||||
|
<span class="insight-content-title text-color-one py-3">Share the Report</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Virtual Engagement Section -->
|
||||||
|
<section id="virtual-engagement">
|
||||||
|
<div class="container-fluid virtual-engagement-band">
|
||||||
|
<div class="row konectar-specialities-list">
|
||||||
|
<h3 class="light-blue text-center pb-4">Why Virtual Engagement Platform?</h3>
|
||||||
|
</div>
|
||||||
|
<div class="row konectar-specialities-list">
|
||||||
|
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-md-4 col-12 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Secure & High Performance</li>
|
||||||
|
<li> Fully Compliant</li>
|
||||||
|
<li> Better Customer Engagement</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-md-4 col-12 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>User Friendly UI</li>
|
||||||
|
<li>Effective Digital Collaboration</li>
|
||||||
|
<li>Cost Effective</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="konectar-specialities-block col-lg-4 col-md-4 col-9 d-flex justify-content-center">
|
||||||
|
<ul class="list-styled">
|
||||||
|
<li>Time Saving</li>
|
||||||
|
<li>Easy HCP Access</li>
|
||||||
|
<li>Rich Insights</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</KonectarLayout>
|
|
@ -0,0 +1,122 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
import mysql from 'mysql2/promise';
|
||||||
|
let data = null;
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/media-view`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
data = res.arrData;
|
||||||
|
// console.log(data);
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
function stripTags(html) {
|
||||||
|
// Create a temporary DOM element to remove HTML tags
|
||||||
|
if (typeof html !== 'string') {
|
||||||
|
return ''; // Return an empty string if input is not a string
|
||||||
|
}
|
||||||
|
return html.replace(/<[^>]*>/g, '');
|
||||||
|
}
|
||||||
|
|
||||||
|
function truncateText(text, length) {
|
||||||
|
// Truncate the text to the desired length and append ellipsis
|
||||||
|
return text.length > length ? text.substring(0, length) + '...' : text;
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatDate(dateString) {
|
||||||
|
const date = new Date(dateString);
|
||||||
|
|
||||||
|
// Format the date to "30 March, 2021"
|
||||||
|
return date.toLocaleDateString('en-US', {
|
||||||
|
day: '2-digit',
|
||||||
|
month: 'long',
|
||||||
|
year: 'numeric'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Aissel Technologies | News and Media | PR">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<div id="media-view" class="content">
|
||||||
|
<section id="band-zero">
|
||||||
|
<div class="container-fluid ">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-5 col-md-8 mx-lg-5 px-lg-5 py-lg-3 ms-lg-5 d-flex justify-content-center align-items-center">
|
||||||
|
<h1 class="band-media-title ms-lg-3">PR list / Media Recognition</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="band-one">
|
||||||
|
<div class="container band-one my-lg-5 my-md-4 my-4">
|
||||||
|
{data.map((media) => (
|
||||||
|
<div
|
||||||
|
class="row justify-content-center align-items-center py-2 py-lg-3 pb-md-3">
|
||||||
|
<div class="col-lg-3 col-md-4 col-sm-12 col-12 text-center">
|
||||||
|
<img
|
||||||
|
src=`${import.meta.env.PUBLIC_WEBSITE_URL}/public/assets/images/media/${media.image}`
|
||||||
|
alt=`${media.image_alt_text}` />
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="col-lg-8 col-md-8 col-sm-10 col-10 text-center text-lg-start text-md-start content-block">
|
||||||
|
<h4 for="" class="mb-1">{media.publication_name}</h4>
|
||||||
|
<label class="date">{formatDate(media.published_on)}</label>
|
||||||
|
<p class="tag-line mt-1 mb-2">{media.title}</p>
|
||||||
|
<p class="description lh-base d-none d-sm-none d-md-block d-lg-block">
|
||||||
|
{truncateText(stripTags(`${media.description.toString().replace(/ /g, ' ')}`), 200)}...
|
||||||
|
</p>
|
||||||
|
<div class="text-lg-end text-md-end text-center pt-2">
|
||||||
|
<button type="button"
|
||||||
|
class="float-md-end get-demo-btn btn btn-primary "
|
||||||
|
data-bs-toggle="modal"
|
||||||
|
data-bs-target=`#mediaModal${media.id}`>Read More</button>
|
||||||
|
<!-- Modal -->
|
||||||
|
<div class="modal fade" id=`mediaModal${media.id}`
|
||||||
|
data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1"
|
||||||
|
aria-labelledby="staticBackdropLabel" aria-hidden="true">
|
||||||
|
<div
|
||||||
|
class="modal-dialog modal-lg modal-dialog-centered modal-dialog-scrollable">
|
||||||
|
<div class="modal-content" style="border: 0px;">
|
||||||
|
<div class="modal-header border-0">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row border-0">
|
||||||
|
<div class="col-lg-12">
|
||||||
|
<button type="button" class="btn-close float-end"
|
||||||
|
data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row align-items-center border-0">
|
||||||
|
<div
|
||||||
|
class="media-box-header col-md-4 col-sm-4 text-start border-end border-secondary d-flex flex-column">
|
||||||
|
<label for="">{media.publication_name}</label>
|
||||||
|
<label for="">{media.published_on}</label>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-8 col-sm-8 border-0 d-flex align-items-center justify-content-center justify-content-sm-start pe-0">
|
||||||
|
<a href={media.link} target="_blank"><h6 class="text-start">{media.title}</h6></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body text-lg-start">
|
||||||
|
<p class="text-start"><p style="margin-bottom: 35px; font-size: 16px; line-height: 1.8; font-family: Montserrat, Helvetica, Arial, sans-serif;">
|
||||||
|
<Fragment set:html={media.description}/></p> </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--End Modal -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,190 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Leadership Team | Meet Leaders at Aissel Technolgies">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<style>
|
||||||
|
#meet-us .profile-img-block {
|
||||||
|
min-height: 200px;
|
||||||
|
}
|
||||||
|
.float-left{
|
||||||
|
float:left;
|
||||||
|
}
|
||||||
|
.profile-img-block img{
|
||||||
|
width: 164px;
|
||||||
|
height: 182px;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div id="meet-us" class="content">
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="band-one">
|
||||||
|
<div class="container band-one">
|
||||||
|
<div class="row justify-content-lg-center">
|
||||||
|
<div class="col-lg-9 col-md-10 col-sm-10">
|
||||||
|
<div class="col-12 pt-lg-5 pt-md-4 pt-4">
|
||||||
|
<!--14 JULY 2023 -->
|
||||||
|
<h1 class="band-one-title text-center">Leadership Team</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- Prasad Patil Information -->
|
||||||
|
<div class="col-lg-9 col-md-12 col-12 pt-lg-5 pt-2">
|
||||||
|
<div class="row d-md-block">
|
||||||
|
<div class="col-lg-3 col-md-4 col-3 float-left">
|
||||||
|
<div class="d-flex justify-content-lg-end profile-img-block">
|
||||||
|
<img class="profile-img" src="/assets/images/meet_us/prasad_patil.jpg" alt="Prasad Patil, CEO and Co-Founder" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-9 col-md-8 col-9 float-left">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-10">
|
||||||
|
<div><label class="name fs-5 mb-2">Prasad Patil</label></div>
|
||||||
|
<div><label class="title fs-6 mb-3">Co-founder & CEO</label></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="social-link d-flex align-items-center social-link mx-2 float-right">
|
||||||
|
<a target="new" href="https://in.linkedin.com/in/prasadgpatil"><img class="in" src="/assets/images/meet_us/linkedin_new.png" alt="Aissel LinkedIn" ></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-9 col-md-8 col-12 float-left">
|
||||||
|
<p class="description">Prasad is responsible for setting the overall company strategy and direction for Aissel. He is a hands-on leader who firmly believes that businesses grow only by delivering true value to customers and by creating unique user experiences. His passion for creating awesome products is demonstrated in his close involvement with the design and user experience as well as product marketing teams. Prior to founding Aissel, he worked for over 10 years with companies like EmPower Research, Aditya Birla Group and ITC in various capacities. Prasad holds a Bachelor of Science degree in Physics and Electronics from Karnatak University and MBA from University of Wales.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Suraj Prabhu Information -->
|
||||||
|
<div class="col-lg-9 col-md-12 col-12 pt-lg-5 pt-2">
|
||||||
|
<div class="row d-md-block">
|
||||||
|
<div class="col-lg-3 col-md-4 col-3 float-left">
|
||||||
|
<div class="d-flex justify-content-lg-end profile-img-block">
|
||||||
|
<img class="profile-img" src="/assets/images/meet_us/suraj_prabhu.jpg" alt="Suraj Prabhu, VP - Engineering, Aissel" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-9 col-md-8 col-9 float-left">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-10">
|
||||||
|
<div><label class="name fs-5 mb-2">Suraj Prabhu</label></div>
|
||||||
|
<div><label class="title fs-6 mb-3">Co-founder & CTO</label></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="social-link d-flex align-items-center social-link mx-2 float-right">
|
||||||
|
<a target="new" href="https://in.linkedin.com/pub/suraj-prabhu-cpim/1/215/737"><img class="in" src="/assets/images/meet_us/linkedin_new.png" alt="Aissel LinkedIn" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-9 col-md-8 col-12 float-left">
|
||||||
|
<p class="description">With over 20 years of experience in IT Management, Suraj is responsible for the technology direction, product development, testing and support of our enterprise software products. Before joining Aissel, he worked with Hewlett-Packard for over 10 years. Based in Atlanta, he was responsible for delivery of Supply Chain solutions for a leading beverage company. He has experiece working with clients in manufacturing, high-tech and consumer industries. Suraj is an American Production & Inventory Control Society (APICS) certified Production and Inventory Management professional and holds a Bachelor of Science degree in IT.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Mahesh Grampurohit Information -->
|
||||||
|
<div class="col-lg-9 col-md-12 col-12 pt-lg-5 pt-2">
|
||||||
|
<div class="row d-md-block">
|
||||||
|
<div class="col-lg-3 col-md-4 col-3 float-left">
|
||||||
|
<div class="d-flex justify-content-lg-end profile-img-block">
|
||||||
|
<img class="profile-img" src="/assets/images/meet_us/mahesh_grampurohit.jpg" alt="Mahesh Grampurohit, Co-Founder and Director, Aissel" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-9 col-md-8 col-9 float-left">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-10">
|
||||||
|
<div><label class="name fs-5 mb-2">Mahesh Grampurohit</label></div>
|
||||||
|
<div><label class="title fs-6 mb-3">Co-founder & Director</label></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="social-link d-flex align-items-center social-link mx-2 float-right">
|
||||||
|
<a target="new" href="https://www.linkedin.com/in/mahesh-grampurohit-6566533/"><img class="in" src="/assets/images/meet_us/linkedin_new.png" alt="Aissel LinkedIn" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-9 col-md-8 col-12 float-left">
|
||||||
|
<p class="description">Mahesh brings over 16 years of experience in designing and developing technology solutions for Global Fortune 500 clients. He is responsible for the seamless operations of the company. Prior to this, he was the Chief Architect at Cybage Software wherein he worked with several global technology companies, and was involved in design of large enterprise applications. Mahesh holds a Bachelor of Engineering degree from Kuvempu University and a Post Graduate Diploma in Advanced Computing from ACTS C-DAC at Pune University.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Amit Vikram Belligundu Information -->
|
||||||
|
<div class="col-lg-9 col-md-12 col-12 pt-lg-5 pt-2">
|
||||||
|
<div class="row d-md-block">
|
||||||
|
<div class="col-lg-3 col-md-4 col-3 float-left">
|
||||||
|
<div class="d-flex justify-content-lg-end profile-img-block">
|
||||||
|
<img class="profile-img" src="/assets/images/meet_us/amit_v.jpg" alt="Amit V, Director - Global Sales & Business Development, Aissel" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-9 col-md-8 col-9 float-left">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-10">
|
||||||
|
<div><label class="name fs-5 mb-2">Amit Vikram Belligundu</label></div>
|
||||||
|
<div><label class="title fs-6 mb-3">Vice President - Global Sales & Business Development</label></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="social-link d-flex align-items-center social-link mx-2 float-right">
|
||||||
|
<a target="new" href="https://in.linkedin.com/pub/amit-vikram-belligundu/23/42/877"><img class="in" src="/assets/images/meet_us/linkedin_new.png" alt="Aissel LinkedIn" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-9 col-md-8 col-12 float-left">
|
||||||
|
<p class="description">A decisive leader, with proven success in establishing strong presence in new markets, identifying growth opportunities, and initiating strong business alliances, Amit drives Sales & Business Development. His strong experience in managing enterprise clients makes him connect with customers really well providing them outstanding customer experience. His account management skills have helped establish solid partnerships with industry leading life science companies. Prior to Aissel, he worked with EmPower Research, a business research company. Amit holds a Bachelors degree in Commerce and MBA from Karnatak University.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Three Section -->
|
||||||
|
<section id="band-three">
|
||||||
|
<div class="container-fluid band-three">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-12 col-md-10 col-sm-10 col-12 py-lg-4 py-md-4">
|
||||||
|
<!-- #31119 : Implementation of h2 and h3 tags missing in some pages -->
|
||||||
|
<h2 class="band-one-title text-center pb-lg-3">Our Team</h2>
|
||||||
|
<div class="row px-0">
|
||||||
|
<div class="my-slider js-imageslider pb-4">
|
||||||
|
<ul class="my-slider-list">
|
||||||
|
<li class="my-slider-item"><img class="img-responsive" src="/assets/images/meet_us/team_new1.jpg" width="" height="" alt="Slider Image 1" /></li>
|
||||||
|
<li class="my-slider-item"><img class="img-responsive" src="/assets/images/meet_us/team_new2.jpg" width="" height="" alt="Slider Image 2" /></li>
|
||||||
|
<li class="my-slider-item"><img class="img-responsive" src="/assets/images/meet_us/team_new1.jpg" width="" height="" alt="Slider Image 3" /></li>
|
||||||
|
<li class="my-slider-item"><img class="img-responsive" src="/assets/images/meet_us/team_new2.jpg" width="" height="" alt="Slider Image 4" /></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<script src="/assets/js/jquery.imageslider.js" defer></script>
|
||||||
|
|
||||||
|
<!-- JS Image Slider -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function() {
|
||||||
|
$('.js-imageslider').imageslider({
|
||||||
|
slideItems: '.my-slider-item',
|
||||||
|
slideContainer: '.my-slider-list',
|
||||||
|
slideDistance: 1,
|
||||||
|
slideDuratin: 100,
|
||||||
|
resizable: true,
|
||||||
|
// pause: true
|
||||||
|
});
|
||||||
|
});
|
||||||
|
$('.js-imageslider').imageslider({
|
||||||
|
slideItems: '.my-slider-item',
|
||||||
|
slideContainer: '.my-slider-list',
|
||||||
|
slideDistance: 1,
|
||||||
|
slideDuratin: 100,
|
||||||
|
resizable: true,
|
||||||
|
// pause: true
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
</script> </div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,99 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Privacy Policy | Aissel Technologies">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="main" class="content">
|
||||||
|
<div class="container-fluid" id="privacy">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-9 py-3">
|
||||||
|
<h1 class="privacy-title-text text-center">AISSEL TECHNOLOGIES, INC.</h1>
|
||||||
|
<!--14 JULY 2023 -->
|
||||||
|
<h5 class="privacy-title-text text-center mb-0">PRIVACY POLICY AND PRIVACY SHIELD POLICY</h5>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-9">
|
||||||
|
<h5 class="privacy-title-text text-center">EFFECTIVE JUNE 12, 2017</h5>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<p class="section-content">The purpose of this privacy policy (this "Policy") is to provide individuals with a description of the types of information we at Aissel Technologies, Inc. ("we", "Aissel" or the "Company"), collect about individual persons through our products (the "Product") and to confirm that we comply with the US-EU Privacy Shield Framework promulgated by the United States Department of Commerce.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<!-- 04-04-2024 -->
|
||||||
|
<h5 class="section-title">SOURCE OF INFORMATION WE COLLECT</h5>
|
||||||
|
<p class="section-content">The purpose of this privacy policy (this "Policy") is to provide individuals with a description of the types of information we at Aissel Technologies, Inc. ("we", "Aissel" or the "Company"), collect about individual persons through our products (the "Product") and to confirm that we comply with the US-EU Privacy Shield Framework promulgated by the United States Department of Commerce.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">KINDS OF INFORMATION WE COLLECT</h5>
|
||||||
|
<p class="section-content">In general, we collect the following types of information: contact information, including, a name, work email address, work mailing address, work telephone number, educational and professional background, and information concerning the individual's scientific publications, participation in seminars and similar academic work. </p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">HOW WE USE INFORMATION.</h5>
|
||||||
|
<p class="section-content">The primary use of the information we collect is to inform our corporate customers of possible business relationships consistent with individual's professional experience and research interests. The third parties to which the Company discloses personal information are in general corporate customers in the health care field (including without limitation pharmaceutical and health care products companies) that desire to have a business relationship building on professional knowledge and experience of qualified individuals.</p>
|
||||||
|
<p class="section-text">We also use such information to :</p>
|
||||||
|
<ul>
|
||||||
|
<li class="section-text">respond to inquiries or service requests and monitor such responses;</li>
|
||||||
|
<li class="section-text">manage and assess usage of the Product;</li>
|
||||||
|
<li class="section-text">to carry out our obligations arising from any contracts;</li>
|
||||||
|
<li class="section-text">to administer our Product and for internal operations, including troubleshooting, data analysis, testing, research, statistical and survey purposes;</li>
|
||||||
|
<li class="section-text">to improve our Product to ensure that content is presented in the most effective manner;</li>
|
||||||
|
<li class="section-text">as part of our efforts to keep our Product safe and secure; and</li>
|
||||||
|
<li class="section-text">make suggestions and recommendations to users of our Product about products that may interest them.</li>
|
||||||
|
</ul>
|
||||||
|
<p class="section-content">Any individual with questions regarding the foregoing, or our privacy practices, or the Product, may contact: <a href="mailto:support@aissel.com">support@aissel.com</a>.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">DISCLOSURE OF INFORMATION</h5>
|
||||||
|
<p class="section-content">We do not share personally identifiable information to third parties who are not affiliates of the Company, except as described here. We may disclose personally identifiable information to appropriate affiliates of the Company, including strategic alliance affiliates and third party service providers, to respond to a request for service or to provide information about available products or services. We are not limited in our use of non-personal information that does not permit direct association with any specific individual, or non-identifiable aggregate information about our users (such as the number of users of our Product, the geographic distribution of our users, the amount of information located and/or removed, etc.).</p>
|
||||||
|
<p class="section-content">We disclose information that we, in good faith, believe is appropriate to cooperate in investigations of fraud or other illegal activity, or to conduct investigations of violations of our TOS. For example, this means that if we conduct a fraud investigation and conclude that one side has engaged in deceptive practices, we can give that person or entity's contact information to victims who request it. In addition, we reserve the right to disclose aggregate information and personally identifiable information to third parties as required or permitted by law and when we believe that disclosure is necessary to protect our rights.</p>
|
||||||
|
<p class="section-content">We disclose information in response to a subpoena, warrant, court order, levy, attachment, order of a court-appointed receiver or other comparable legal process ("Legal Request"), including Legal Requests from private parties in a civil action, and in response to lawful requests by public authorities, including to meet national security or law enforcement requirements</p>
|
||||||
|
<p class="section-content">If the Legal Request seeks information about an identified user or limited group of users, we'll make reasonable business efforts to contact the user(s) before providing information to the party that requests it. We cannot guarantee that we will be able to contact the user(s) in all cases, whether because of a time limit, court order, inability to effectively contact a user, or for any other reason. We may disclose information to an individual's agent or legal representative (such as the holder of a power of attorney that an individual grants, or a guardian appointed for an individual).</p>
|
||||||
|
<p class="section-content">We share information with companies that provide public relations and marketing services for us. Such information will only be shared by us to customize, measure and improve our products, services and advertising; it will not be shared with third parties for their marketing purposes. These third parties are obligated to protect information under equivalent terms to this Policy and are prohibited from using personally identifiable information for any other purpose.</p>
|
||||||
|
<p class="section-content">As with any other business, it is possible that in the future we could merge with or be acquired by another company. If such an acquisition occurs, the successor company would have access to the information maintained by us, including customer account information, but would continue to be bound by this Policy unless and until it is amended.</p>
|
||||||
|
<p class="section-content">We share information with our parent, subsidiaries and joint ventures to help coordinate the Product we provide, enforce our terms and conditions, and promote trust and safety. We may share aggregate truly anonymized (non-personally identifiable) information with certain third parties such as advertisers, national industry organizations, and prospective affiliates.</p>
|
||||||
|
<p class="section-content">We would like to disclose that we, are only gathering publicly available data from YouTube API services (<a href="https://policies.google.com/privacy">Google Privacy Policy</a>) do not replace YouTube API Data with similar, independently calculated data, or access or use YouTube API Data to create new or derived data or metrics.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">DATA SECURITY</h5>
|
||||||
|
<p class="section-content">We follow commercially accepted industry standards to protect the personal information submitted to us, both during transmission and once we receive it. While we strive to use commercially acceptable means to protect personal information, no method of transmission over the Internet, or method of electronic storage, is 100% secure and we cannot guarantee its absolute security. In the event of an inadvertent disclosure of personal information we will take all commercially reasonable steps to limit and remedy the disclosure as required by the applicable law. If individuals have any questions about security regarding our Product, they can contact us at <a href="mailto:privacy@aissel.com">privacy@aissel.com</a>.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">RIGHT OF OPT-OUT, ACCESS AND CORRECTION</h5>
|
||||||
|
<p class="section-content">We provide individuals the opportunity to "opt-out" of having their personally identifiable information collected by us. In addition, European data protection legislation gives individuals the right to access personally identifiable information held about them. Individuals may ensure that such information is accurate and relevant for the purposes for which we collected it. Individuals may review their own information and correct or remove any information that is incorrect, as permitted by applicable law. To request opt-out, review, modification or removal of personal data, you should submit a written request to us at <a href="mailto:privacy@aissel.com">privacy@aissel.com</a>.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">EU-US-SWISS PRIVACY SHIELD FRAMEWORK</h5>
|
||||||
|
<p class="section-content">Aissel complies with the EU-U.S. Privacy Shield Framework and Swiss-U.S. Privacy Shield Framework as set forth by the U.S. Department of Commerce regarding the collection, use, and retention of personal information transferred from the European Union and Switzerland to the United States.</p>
|
||||||
|
<!-- 14th JULY 2023 added title for privacy link anchor tag -->
|
||||||
|
<p class="section-content">Aissel has certified to the Department of Commerce that we adhere to the Privacy Shield Principles, including those relating to Notice, Choice, Accountability for Onward Transfer, Security, Data Integrity and Purpose Limitation, Access, and Recourse, Enforcement and Liability. We commit to subject to the Principles all personal data received from the EEA in reliance on the Privacy Shield. These Principles include without limitation (i) the possibility for the individual to invoke binding arbitration and (ii) our liability in the case of onward transfer to third parties. In addition to Aissel, Aissel Technologies Pvt. Ltd., Aissel's parent company. also adheres to the Principles. If there is any conflict between the policies in this privacy policy and the Privacy Shield Principles, the Privacy Shield Principles shall govern. To learn more about the Privacy Shield program, any rights an individual may have to binding arbitration before a Privacy Shield Panel, and to view our certification page, please visit <a href="https://www.privacyshield.gov" title="Privacy Shield.Gov" target="_blank">https://www.privacyshield.gov</a>.</p>
|
||||||
|
<p class="section-content">In compliance with Privacy Shield Principles, Aissel commits to resolve complaints about privacy and our collection or use of personal information. European Union and Swiss individuals with inquiries or complaints regarding this privacy policy should first contact Aissel at <a href="mailto:privacy@aissel.com">privacy@aissel.com</a>.</p>
|
||||||
|
<!-- 14th JULY 2023 added title for privacy link anchor tag -->
|
||||||
|
<p class="section-content">Aissel further has committed to refer unresolved privacy complaints to JAMS (Judicial Arbitration & Mediation Services), an independent alternative dispute resolution provider located in the United States and recognized for this purpose by the US Department of Commerce. If you do not receive timely acknowledgment of your complaint, or if your complaint is not satisfactorily addressed, please visit <a href="https://www.jamsadr.com/eu-us-privacy-shield" title="JAMS EU-U.S. Privacy Shield" target="_blank">https://www.jamsadr.com/eu-us-privacy-shield</a> for more information, and to file a complaint. The services of JAMS are provided at no cost to the individual.</p>
|
||||||
|
<p class="section-content">The Federal Trade Commission has enforcement authority regarding Aissel's compliance with the Privacy Shield Principles.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">GOVERNING LAW</h5>
|
||||||
|
<p class="section-content">This Policy is governed by the laws of the Commonwealth of Massachusetts, U.S.A. without giving effect to any principles of conflict of law.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">AGE LIMITATION</h5>
|
||||||
|
<p class="section-content">The Product is not directed to person under the age of 18. If you become aware that a child has provided us with personal information, please contact us at <a href="mailto:privacy@aissel.com">privacy@aissel.com</a>. We do not knowingly collect or solicit information concerning persons under 18 years old. If we become aware that a person under 18 has provided us with personal information, we take steps to remove such information and terminate the person's account.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">EFFECTIVE DATE; POLICY CHANGES</h5>
|
||||||
|
<p class="section-content">Any changes we make to our privacy policy in the future will be posted on this page and, where appropriate, notified to individuals by e-mail. Please check back frequently to see any updates or changes to our privacy policy. Our business changes frequently and this Policy is subject to change from time to time. Individuals are encouraged to check the Site regularly for any changes to this Privacy. Unless stated otherwise, our current Policy applies to all information that we have about individuals. We will not materially change our policies and practices to make them less protective of customer information collected in the past without the consent of affected individuals.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">CALIFORNIA PRIVACY RIGHTS.</h5>
|
||||||
|
<p class="section-content">California Civil Code Section 1798.83 permits customers who are California residents and who have provided the Company with "personal information" (as that term is defined in Section 1798.83) to request certain information about the disclosure of that information to third parties for their direct marketing purposes. If you are a California resident with questions regarding this, please contact us at <a href="mailto:privacy@aissel.com">privacy@aissel.com</a>.</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-7 pt-3">
|
||||||
|
<h5 class="section-title">CONTACT US</h5>
|
||||||
|
<p class="section-content">To contact us with your questions or comments regarding this Policy or the information collection and dissemination practices of the Product, please email us at <a href="mailto:privacy@aissel.com">privacy@aissel.com</a>. All trademarks, service marks, and other proprietary materials herein are the property of the Company or its affiliates. All rights reserved.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div> </div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,375 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Aissel Technologies: Our KOL Management Products" navNum="2" >
|
||||||
|
<nav id="secondary-navbar" class="navbar d-lg-flex d-md-block d-sm-none products-menu justify-content-md-end " slot="nav-slot">
|
||||||
|
<ul class="ms-auto justify-content-end">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class ="nav-link scrollto" href="#kolm-software">KOLM Software</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class ="nav-link scrollto" href="#integrations">Integrations</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class ="nav-link scrollto" href="#salesforce-app">Salesforce App</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class ="nav-link scrollto" href="#media-intelligence">Media Intelligence</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
<a class="dropdown-toggle" href="/konectar/kol-management" data-bs-toggle="dropdown" onclick= "window.location.href='/konectar/kol-management'" aria-expanded="false">
|
||||||
|
konectar
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu d-flex" aria-labelledby="navbarDropdown">
|
||||||
|
<div class="dropdown-section">
|
||||||
|
<ul>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oncology">konectar Oncology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link " href="/konectar/cns">konectar CNS</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/cardiology">konectar Cardiology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/oralhealth">konectar Oral Health</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/endocrinology">konectar Endocrinology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/gastroenterology">konectar Gastroenterology</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="dropdown-section">
|
||||||
|
<ul>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/painmedicine">konectar Pain Medicine</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/dermatology">konectar Dermatology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/eyecare">konectar Eye Care</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/nephrology">konectar Nephrology</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/konectar/veterinary">konectar Veterinary</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li >
|
||||||
|
<a class ="nav-link" href="/konectar/social">konectar Social</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item item-last">
|
||||||
|
<a class ="nav-link" href="/konectar/virtualengagement">konectar Virtual Engagement</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<div id="products" class="content">
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="band-one" class="jumbotron-fluid">
|
||||||
|
<div class="container-fluid band-one">
|
||||||
|
<div class="row w-100">
|
||||||
|
<div class="col-lg-6 col-md-7 col-sm-6 col-6 band-one-content">
|
||||||
|
<!-- 21-09-2023 -->
|
||||||
|
<div class="w-50 text-center rounded">
|
||||||
|
<img class="img-fluid" src="/assets/images/products/konectar_white_logo.svg" width="100%" alt="konectar logo">
|
||||||
|
</div>
|
||||||
|
<h1 class="band-one-text hero-header"><span class="">HCP Management Platform</span></h1>
|
||||||
|
<!-- 04-04-2024 -->
|
||||||
|
<!-- <h2 class="band-one-subtext hero-subheader">Leverage the power of data & analytics to derive meaningful insights into the HCPs ecosystem!</h2> -->
|
||||||
|
<h2 class="band-one-subtext hero-subheader">Aissel's Cutting-Edge Product Solutions</h2>
|
||||||
|
<!-- <p class="band-one-text">Find the <span class="bold-text">right experts</span> and engage them in <span class="bold-text">productive interactions.</span></p> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Two Section -->
|
||||||
|
<section id="kolm-software">
|
||||||
|
<div class="band-two" id="kolm-software-band">
|
||||||
|
<div class="container py-lg-5 py-3">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/products/intuitive_ui_rich_visualizations.png" class="" alt="intuitive_rich_visualizations">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3 px-lg-3">Intuitive UI and Rich Visualizations</label>
|
||||||
|
<p class="band-content px-lg-3">Simple and user-friendly interfaces for better user adoption. Out-of-the-box reports and network maps for data analysis.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/products/mobile_access.png" class="" alt="intuitive_rich_visualizations">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3 px-lg-3">Mobile Access</label>
|
||||||
|
<p class="band-content px-lg-3">Access all your KOL Profiles from your smartphone and iPads on-the-go! Data syncs automatically on all devices.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/products/pay_as_you_go.png" alt="pay_as_you_go">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3 px-lg-3">Pay-As-You-Go</label>
|
||||||
|
<p class="band-content px-lg-3">Increase or decrease the number of licenses as and when you need. Easily cancel your subscription at any time.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Three Section -->
|
||||||
|
<section id="section-three">
|
||||||
|
<div class="container-fluid band-three">
|
||||||
|
<div class="row py-3">
|
||||||
|
<div class="col-12 col-md-6 col-sm-6 col-lg-6">
|
||||||
|
<div class="py-3 py-lg-5 text-center">
|
||||||
|
<img class="discover-image img-fluid" src="/assets/images/products/discover_band.png" alt="discover-image">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-md-6 col-sm-6 col-lg-6 d-flex align-items-center">
|
||||||
|
<div class="content-box pe-lg-5">
|
||||||
|
<label class="content-title">Discover</label>
|
||||||
|
<!-- 21-09-2023 -->
|
||||||
|
<p class="content-description text-justify">Gain predictive insights into high-impact data curated from fragmented data estates in one place! Integrate your
|
||||||
|
HCP Identification data into our konectar application.
|
||||||
|
Unlock dynamic reporting, segmentation, and advanced filtering to strengthen your HCP connections.</p>
|
||||||
|
<div class="mt-lg-5 text-lg-end">
|
||||||
|
<a class="btn orange-button px-lg-5 demo_button" href="/get-demo">Request a Demo</a></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Four Section -->
|
||||||
|
<section id="section-four">
|
||||||
|
<div class="band-four">
|
||||||
|
<div class="container py-lg-5 py-3">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/products/kol_profiles.png" alt="kol-profiles">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3 px-lg-4">KOL Profiles</label>
|
||||||
|
<p class="band-content px-lg-4">Find the right experts for your objectives by ranking them. Conduct more productive interactions with better understanding of your HCPs.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/products/network_and_geo_maps.png" alt="network-geo-maps">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3 px-lg-4">Network and Geo maps</label>
|
||||||
|
<p class="band-content px-lg-4">Analyse the networks, connections and collaborations within the community of HCPs and see how interactions are happening.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/products/track_engagement.png" alt="track-engagement">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3 px-lg-4">Track Engagement</label>
|
||||||
|
<p class="band-content px-lg-4">Track your <a title="KOL virtual engagement" href="/konectar/virtualengagement" target="_blank">KOL Engagement</a> seamlessly with built-in CRM modules that can be easily customized as per your company requirements.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Five Section -->
|
||||||
|
<section id="integrations">
|
||||||
|
<div class="container-fluid band-five" id="integrations-band">
|
||||||
|
<div class="row py-4">
|
||||||
|
<div class="col-12 col-sm-4 col-md-5 col-lg-5 d-flex align-items-center justify-content-center">
|
||||||
|
<div class="crm-image text-center">
|
||||||
|
<img class="img-fluid" src="/assets/images/products/integrate_with_your_existing_crm.png" width="400px" alt="intergrate_with_crm">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-8 col-sm-4 col-md-4 col-lg-4 d-flex align-items-center">
|
||||||
|
<div class="content-box">
|
||||||
|
<p class="content-title">Integrate with your CRM</p>
|
||||||
|
<p class="content-description text-justify">Using a different application for interaction tracking and CRM? KOLM easily integrates with your existing CRM enabling the user to seamlessly access both the systems.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-sm-4 col-md-2 col-lg-2 d-flex flex-column align-items-center p-2 mx-auto">
|
||||||
|
<div class="content-brochure_box">
|
||||||
|
<img class="img-fluid" src="/assets/images/products/sfdc_thumbnails_product.png" alt="konectar CRM Integration">
|
||||||
|
</div>
|
||||||
|
<div class="py-1">
|
||||||
|
<a href="/resources/articles" class="brochure-download-btn atplDemoBtn"><img src="/assets/images/products/download_btn.png" alt="Download Button"> Download</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Five Section -->
|
||||||
|
<section id="salesforce-app">
|
||||||
|
<div class="band-six" id="salesforce-band">
|
||||||
|
<div class="container py-md-5 py-sm-3">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/products/salesforce_platform.png" alt="salesforce-platform">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3 px-lg-4">Salesforce platform</label>
|
||||||
|
<p class="band-content px-lg-4">Most convenient application built on Salesforce Platform to deliver KOL Profiling capabilities to existing salesforce users.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/products/seamless_integration.png" alt="seamless-integration">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3 px-lg-4">Seamless Integration</label>
|
||||||
|
<p class="band-content px-lg-4">Integrates with your existing salesforce application and the users can access profiles of their HCPs without even switching screens.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/products/insightful%20_reports_and_analytics.png" alt="insightful-reports">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3 px-lg-4">Insightful Reports and Analytics</label>
|
||||||
|
<p class="band-content px-lg-4">Network Maps and Reports equip you with even better tools to analyse your Healthcare Professionals and plan your communications.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Seven Section -->
|
||||||
|
<section id="band-seven" class="jumbotron-fluid">
|
||||||
|
<div class="container-fluid band-seven">
|
||||||
|
<div class="row h-100">
|
||||||
|
<div class="col-lg-5 offset-lg-6 col-md-6 offset-md-6 d-flex align-items-center">
|
||||||
|
<div class="content-box">
|
||||||
|
<!-- 21-09-2023 -->
|
||||||
|
<p class="profile-healthcare-text pt-4">Profiles of Healthcare Professionals can be seamlessly integrated within your existing salesforce application.
|
||||||
|
Access the powerful tool to gain detailed info about your contacts, plan and execute interactions, and optimize collaborations!</p>
|
||||||
|
<div class="pt-2 mt-lg-5 text-end px-md-5">
|
||||||
|
<a href="/get-demo" class="btn orange-button px-lg-5 demo_button">Request a Demo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Eight Section -->
|
||||||
|
<section id="media-intelligence">
|
||||||
|
<div class="container-fluid band-eight" id="medintel-band">
|
||||||
|
<div class="row p-lg-4 py-4 align-items-center">
|
||||||
|
<div class="col-12 col-md-6 col-lg-6 content-box">
|
||||||
|
<div class="p-lg-4 text-justify">
|
||||||
|
<label class="content-title">MedIntel</label>
|
||||||
|
<p class="content-description">MedIntel is the Medical Media Intelligence feature fully integrated into the <a title="KOL Management Platform" href="/konectar/kol-management" target="_blank">KOL Management</a> application.</p>
|
||||||
|
<p class="content-description">Medical news articles from hundreds of sources are curated everyday and organized into various categories. You can easily follow your favourite topics or discuss online with your colleagues. Based on your topics of interest, newsletter is generated everyday for you.</p>
|
||||||
|
<p class="content-description">We scan the news globally and alert you whenever your favourite topics are mentioned in the news. You will never miss another important bit of news.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-md-6 col-lg-6 content-image">
|
||||||
|
<img class="img-fluid" src="/assets/images/products/surfacepro.jpg" alt="Surface Pro Image">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Nine Section -->
|
||||||
|
<section id="band-nine">
|
||||||
|
<div class="band-nine py-lg-5 py-3">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/products/listen.png" alt="listen">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3 px-lg-4">Listen</label>
|
||||||
|
<p class="band-content px-lg-4">Cut through the noise. We scan, curate and extract the most relevant content on your preferred choice of medical trends and topics, diseases, or technology trends. It's your personalized news monitor.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/products/understand.png" alt="understand">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3 px-lg-4">Understand</label>
|
||||||
|
<p class="band-content px-lg-4">Understand your competition by following their media mentions. Stay current on your competitor products, companies, new approvals or even the people. We keep a track of what matters to you.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3 col-lg-12 col-md-12 band-image-block d-flex justify-content-center">
|
||||||
|
<img src="/assets/images/products/track.png" alt="track">
|
||||||
|
</div>
|
||||||
|
<div class="col-9 col-lg-12 col-md-12 band-title-block">
|
||||||
|
<label class="band-title font-weight-bolder py-3 px-lg-4">Track</label>
|
||||||
|
<p class="band-content px-lg-4">Track the industry trends, technology developments, new research and always stay up-to-date on advancements in <a title="life sciences industry" href="/konectar/social" target="_blank">Life Sciences</a>. We will keep you updated on what's new in your field.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band Ten Section -->
|
||||||
|
<section id="band-ten">
|
||||||
|
<div class="container-fluid band-ten">
|
||||||
|
<div class="row m-0">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<p class="band-ten-text">Access profiles of millions of Healthcare Professionals</p>
|
||||||
|
<div><a href="/get-demo" class="btn orange-button px-lg-5 demo_button">Request a Demo</a></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,337 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
const website_url = import.meta.env.PUBLIC_WEBSITE_URL;
|
||||||
|
|
||||||
|
|
||||||
|
let data = null;
|
||||||
|
try {
|
||||||
|
const response = await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/resources/articles`);
|
||||||
|
const res = await response.json();
|
||||||
|
data = res.arrResources;
|
||||||
|
// console.log(data);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error fetching articles:', error);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function truncateDescription(description, maxLength = 50) {
|
||||||
|
if (description.length <= maxLength) {
|
||||||
|
return description; // Return the original if it's already short enough
|
||||||
|
}
|
||||||
|
// Slice the string to the maximum length and remove any trailing words
|
||||||
|
const truncated = description.slice(0, maxLength);
|
||||||
|
return truncated.slice(0, Math.max(truncated.lastIndexOf(' '), 0)) + '...';
|
||||||
|
}
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Aissel Resources: Articles for Insight" navNum="4">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<div id="resources" class="content">
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="band-one">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-6 col-md-6 mt-4 text-center">
|
||||||
|
<!-- 11-07-2023 -->
|
||||||
|
<h1>Resources</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-3 col-md-6 py-lg-4 py-md-3 py-3">
|
||||||
|
<div class="d-flex justify-content-around">
|
||||||
|
<a href="/resources/articles">
|
||||||
|
<button
|
||||||
|
id="article"
|
||||||
|
class="px-5 py-2 text-center blue-btn"
|
||||||
|
>Articles</button
|
||||||
|
>
|
||||||
|
</a>
|
||||||
|
<a href="/resources/blogs">
|
||||||
|
<button
|
||||||
|
id="blog"
|
||||||
|
class="px-5 py-2 text-center white-btn"
|
||||||
|
>Blog</button
|
||||||
|
>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Start of Articles Card Section -->
|
||||||
|
<div
|
||||||
|
class="row px-lg-5 mx-lg-4 mx-md-4 mx-sm-2 mx-2"
|
||||||
|
id="article-card"
|
||||||
|
>
|
||||||
|
|
||||||
|
{
|
||||||
|
data.map((resource, index) => (
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
<div class="card article-card border-0">
|
||||||
|
<div class="card-img-block">
|
||||||
|
<img
|
||||||
|
class="card-img-top"
|
||||||
|
src=`https://aissel.com/public/uploads/resources/images/${resource.image}`
|
||||||
|
alt="Card image cap"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="card-body p-3">
|
||||||
|
<h6 class="card-title">
|
||||||
|
{resource.title}
|
||||||
|
</h6>
|
||||||
|
<p class="card-text">
|
||||||
|
<span class="article-desc"
|
||||||
|
>{truncateDescription(resource.description)}</span
|
||||||
|
>...<a
|
||||||
|
|
||||||
|
role="button" data-bs-toggle="modal"
|
||||||
|
data-bs-target=`#mediaModal${resource.id}` >Read more</a>
|
||||||
|
</p>
|
||||||
|
<div class="modal fade" id=`mediaModal${resource.id}`
|
||||||
|
data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1"
|
||||||
|
aria-labelledby="staticBackdropLabel" aria-hidden="true">
|
||||||
|
<div class="modal-dialog modal-lg"><div class="modal-content" style="border:0px;">
|
||||||
|
<div class="modal-header border-bottom">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row border-0">
|
||||||
|
<div class="col-lg-12 text-end">
|
||||||
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-lg-12 border-0 d-flex align-items-center justify-content-center">
|
||||||
|
<h6 class="mb-0">{resource.title}</h6>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="modal-body text-lg-start">
|
||||||
|
<p class="article-description">{resource.description}</p>
|
||||||
|
</div>
|
||||||
|
</div></div></div>
|
||||||
|
<div class="d-flex justify-content-center">
|
||||||
|
<a
|
||||||
|
class="brochure-download-btn atplDemoBtn"
|
||||||
|
id=`downloadPaper${resource.id}`
|
||||||
|
data-bs-toggle="modal"
|
||||||
|
data-bs-target=`#resourcesModal${resource.id}`
|
||||||
|
role="button"
|
||||||
|
><img
|
||||||
|
src="/assets/images/products/download_btn.png"
|
||||||
|
width=""
|
||||||
|
height=""
|
||||||
|
alt="Download Button"
|
||||||
|
/> Download</a
|
||||||
|
>
|
||||||
|
<div class="modal fade" id=`resourcesModal${resource.id}`
|
||||||
|
data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1"
|
||||||
|
aria-labelledby="staticBackdropLabel" aria-hidden="true"><div class="modal-dialog modal-lg"><div class="modal-content" style="border:0px;">
|
||||||
|
<div class="modal-header border-bottom">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row border-0">
|
||||||
|
<div class="col-lg-10 border-0 d-flex align-items-center justify-content-start">
|
||||||
|
<h6 class="mb-0">Please enter the below details to download</h6>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-2 text-end">
|
||||||
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="modal-body text-lg-start">
|
||||||
|
<div class="comment-form">
|
||||||
|
<form role="form" method="post" id=`getDemoForm${resource.id}` class="custom-form" data-toggle="validator" novalidate="novalidate">
|
||||||
|
<input type="hidden" name="func" value="download">
|
||||||
|
<input type="hidden" name="category_name" value=`${resource.cat_name}`>
|
||||||
|
<input type="hidden" id="resource_id" name="resource_id" value=`${resource.id}`>
|
||||||
|
<input type="hidden" name="file_name" value=`${resource.original_file_name}`>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="name" class="col-sm-12 col-12 col-form-label d-flex justify-content-start fw-bold">Name<span class="mandatory">*</span>:</label>
|
||||||
|
<div class="col-sm-12 col-12">
|
||||||
|
<input class="form-control" type="text" name="name" id="name" placeholder="Enter your full name" aria-label="Enter your full name">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="company" class="col-sm-12 col-12 col-form-label d-flex justify-content-start fw-bold">Company<span class="mandatory">*</span>:</label>
|
||||||
|
<div class="col-sm-12 col-12">
|
||||||
|
<input class="form-control" type="text" name="company_name" id="company_name" placeholder="Enter company name" aria-label="Enter company name">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="inputEmail" class="col-sm-12 col-12 col-form-label d-flex justify-content-start fw-bold">Email<span class="mandatory">*</span>:</label>
|
||||||
|
<div class="col-sm-12 col-12">
|
||||||
|
<input class="form-control" type="email" name="email" id="email" placeholder="Enter your email" aria-label="Enter your email">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="phone" class="col-sm-12 col-12 col-form-label d-flex justify-content-start fw-bold">Phone:</label>
|
||||||
|
<div class="col-sm-12 col-12">
|
||||||
|
<input class="form-control" type="text" name="phone" id="phone" placeholder="Enter phone number" aria-label="Enter phone number">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-3 row justify-content-center">
|
||||||
|
<div class="col-md-9 col-sm-6 col-9 text-center text-md-center">
|
||||||
|
<!-- removed-atplDemoBtn -->
|
||||||
|
<button class="btn orange-button gAnalytics_resourceDownload" onclick=`submitForm(${resource.id}); return false;`>Download</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div></div>
|
||||||
|
<input
|
||||||
|
type="hidden"
|
||||||
|
name="resource_id"
|
||||||
|
value={resource.id}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="website_url" data-key={website_url}>
|
||||||
|
<!-- Other content here -->
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript" is:inline>
|
||||||
|
$(function() {
|
||||||
|
$('.form-control').on('keypress', function(e) {
|
||||||
|
if(($(this).val().trim()) == ''){
|
||||||
|
if (e.which == 32){
|
||||||
|
// console.log('Space Detected');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script data-astro-rerun>
|
||||||
|
const element = document.getElementById('website_url');
|
||||||
|
const url_key = element.dataset.key;
|
||||||
|
const send_download_link = `${url_key}/send_mail/send_download_link`;
|
||||||
|
const mail_download_link = `${url_key}/send_mail/mail_download_link`;
|
||||||
|
const save_download_key = `${url_key}/send_mail/save_download_key`;
|
||||||
|
function submitForm(id) {
|
||||||
|
if (!$(`#getDemoForm${id}`).validate(
|
||||||
|
{
|
||||||
|
rules: {
|
||||||
|
name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 2,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: true,
|
||||||
|
minlength: 3,
|
||||||
|
maxlength: 250
|
||||||
|
},
|
||||||
|
email: {
|
||||||
|
required: true,
|
||||||
|
email: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
name: {
|
||||||
|
required: "Please enter your name",
|
||||||
|
minlength: "Your name must consist of at least 2 characters",
|
||||||
|
maxlength: "Your name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
company_name: {
|
||||||
|
required: "Please enter your company name",
|
||||||
|
minlength: "Your company name must consist of at least 3 characters",
|
||||||
|
maxlength: "Your company name must consist of maximum 250 characters"
|
||||||
|
},
|
||||||
|
email: "Please enter a valid email address"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
).form()) {
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
var form_action1 = send_download_link;
|
||||||
|
var form_action2 = mail_download_link;
|
||||||
|
var data = $(`#getDemoForm${id}`).serialize();
|
||||||
|
$.ajax({
|
||||||
|
url: form_action1,
|
||||||
|
type: "post",
|
||||||
|
dataType: "json",
|
||||||
|
data: data,
|
||||||
|
beforeSend: function() {
|
||||||
|
$(`#getDemoForm${id} .gAnalytics_resourceDownload`).text('Downloading').prop('disabled', true);
|
||||||
|
},
|
||||||
|
success: function(retData) {
|
||||||
|
if (retData.status == true || retData.status == 'true') {
|
||||||
|
var arrData = {};
|
||||||
|
arrData['email'] = retData.email;
|
||||||
|
arrData['download_key'] = retData.download_key;
|
||||||
|
arrData['name'] = retData.name;
|
||||||
|
arrData['original_file_name'] = retData.original_file_name;
|
||||||
|
arrData['resource_id'] = retData.resource_id;
|
||||||
|
arrData['func'] = 'mail_download_link';
|
||||||
|
$.ajax({
|
||||||
|
url: form_action2,
|
||||||
|
type: "post",
|
||||||
|
dataType: "json",
|
||||||
|
data: arrData,
|
||||||
|
beforeSend: function() {
|
||||||
|
$(`#getDemoForm${id} .gAnalytics_resourceDownload`).text('Sending Download link.. !!');
|
||||||
|
},
|
||||||
|
success: function(retDataArr) {
|
||||||
|
if (retDataArr.status == true || retDataArr.status == 'true') {
|
||||||
|
$(`#getDemoForm${id}`).hide();
|
||||||
|
$(`#resourcesModal${id}`).find('form').trigger('reset');
|
||||||
|
$(`#resourcesModal${id} .modal-header`).hide();
|
||||||
|
//empty the content
|
||||||
|
$(`#resourcesModal${id} .modal-body`).empty();
|
||||||
|
|
||||||
|
$(`#resourcesModal${id} .modal-body`).append(
|
||||||
|
"<div id ='message' style='text-align: center;'><p style='font-size: 24px; font-family: asap-italic;'>Thank you for connecting with us!</p><p style='font-size: 16px;'>An email with a link to download your file will be sent to you shortly.</p></div>"
|
||||||
|
);
|
||||||
|
// $(`#resourcesModal${id}`).show();
|
||||||
|
|
||||||
|
var arrResourceData = {};
|
||||||
|
arrResourceData['resource_id'] = retData.resource_id;
|
||||||
|
arrResourceData['download_key'] = retData.download_key;
|
||||||
|
arrResourceData['category_name'] = retData.name;
|
||||||
|
arrResourceData['original_file_name'] = retData.original_file_name;
|
||||||
|
$.ajax({
|
||||||
|
url: save_download_key,
|
||||||
|
type: "post",
|
||||||
|
dataType: "json",
|
||||||
|
data: arrResourceData,
|
||||||
|
success: function(retDataStatus) {
|
||||||
|
setTimeout(() => {
|
||||||
|
$(`#resourcesModal${id}`).modal(
|
||||||
|
'toggle'); /* modal close */
|
||||||
|
}, 1000);
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
alert(
|
||||||
|
"1Something wrong while sending, Please submit your details onceagain");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
alert("2Something wrong while sending, Please submit your details onceagain");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// alert("dinesh");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,117 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
|
||||||
|
let data = null;
|
||||||
|
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/resources/blogs/all`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
data = res.arrArticles;
|
||||||
|
// console.log(data);
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
function truncateDescription(description, maxLength = 50) {
|
||||||
|
if (description.length <= maxLength) {
|
||||||
|
return description; // Return the original if it's already short enough
|
||||||
|
}
|
||||||
|
// Slice the string to the maximum length and remove any trailing words
|
||||||
|
const truncated = description.slice(0, maxLength);
|
||||||
|
return truncated.slice(0, Math.max(truncated.lastIndexOf(' '), 0)) + '...';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Resources | Blogs" navNum="4">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<div id="resources" class="content">
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="band-one">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-6 col-md-6 mt-4 text-center">
|
||||||
|
<!-- 11-07-2023 -->
|
||||||
|
<h1>Resources</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-3 col-md-6 py-lg-4 py-md-3 py-3">
|
||||||
|
<div class="d-flex justify-content-around">
|
||||||
|
<a href="/resources/articles">
|
||||||
|
<button
|
||||||
|
id="article"
|
||||||
|
class="px-5 py-2 text-center white-btn"
|
||||||
|
>Articles</button
|
||||||
|
>
|
||||||
|
</a>
|
||||||
|
<a href="/resources/blogs">
|
||||||
|
<button
|
||||||
|
id="blog"
|
||||||
|
class="px-5 py-2 text-center blue-btn"
|
||||||
|
>Blog</button
|
||||||
|
>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Start of Blog Card Section -->
|
||||||
|
<div
|
||||||
|
class="row px-lg-5 mx-lg-4 mx-md-4 mx-sm-2 mx-2"
|
||||||
|
id="blog-card"
|
||||||
|
>
|
||||||
|
{data.map((post, index) => {
|
||||||
|
let slug = post.slug_url ? post.slug_url.split('/blog/')[1] : post.url_title;
|
||||||
|
return (
|
||||||
|
<div class="col-lg-4 col-md-6" key={index}>
|
||||||
|
<div class="card blog-card border-0">
|
||||||
|
<div class="card-img-block">
|
||||||
|
<a href={`/blog/${slug}`}>
|
||||||
|
<img
|
||||||
|
class="card-img-top"
|
||||||
|
src={`https://www.aissel.com/public/assets/images/article_images/${post.image}`}
|
||||||
|
alt="Card image cap"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="card-body p-3">
|
||||||
|
<h6 class="card-title">{post.title}</h6>
|
||||||
|
<p class="card-text">
|
||||||
|
<span class="blog-desc">{truncateDescription(post.short_description)}</span>
|
||||||
|
<a href={`/blog/${slug}`}>Read more</a>
|
||||||
|
</p>
|
||||||
|
<div class="blogger-content d-flex justify-content-start align-items-center">
|
||||||
|
<div class="blogger-image px-2">
|
||||||
|
<img
|
||||||
|
class="rounded-circle"
|
||||||
|
src={`https://www.aissel.com/public/assets/images/user_profile_images/${post.article_by_image}`}
|
||||||
|
width="50px"
|
||||||
|
height="50px"
|
||||||
|
alt="img"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="blogger-details d-flex flex-column">
|
||||||
|
<label>{post.created_by}</label>
|
||||||
|
<label>{post.user_title}</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,38 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Àissel Technologies: KOL Identification | Mapping | Profiling">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div id="sitemap" class="content">
|
||||||
|
<!-- Main Content Header Section -->
|
||||||
|
<section id="sitemap">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-10">
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com">Aissel Technologies</a></div></li>
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com/meet-us">Aissel Technologies - Meet us</a></div></li>
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com/work-with-us">Aissel Technologies - Work with us</a></div></li>
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com/about-us">Aissel Technologies - About us</a></div></li>
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com/products" >Aissel Technologies - Product</a></div></li>
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com/data-services" >Aissel Technologies - Data services</a></div></li>
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com/resources" >Aissel Technologies - Resources</a></div></li>
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com/media-view" >Aissel Technologies - Media</a></div></li>
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com/support" >Aissel Technologies - Support</a></div></li>
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com/get-demo" >Aissel Technologies - Get demo</a></div></li>
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com/konectar/cns">Aissel Technologies - konectar for CNS</a></div></li>
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com/konectar/oncology" >Aissel Technologies - konectar Oncology</a></div></li>
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com/konectar/faq" >Aissel Technologies - konectar FAQ</a></div></li>
|
||||||
|
<li><div class="py-2"><a href="https://www.aissel.com/blog" >Aissel Technologies - Blog</a></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,38 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Aissel Support: Assistance and Resources" navNum=6>
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<div id="support" class="content">
|
||||||
|
<section id="band-one">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row justify-content-center vh-100 align-items-center">
|
||||||
|
<div class="col-lg-8 col-md-8 col-sm-12 col-12">
|
||||||
|
<div class="support-text">
|
||||||
|
<h1 class="text-center">365/24/7 Support</h1>
|
||||||
|
<p class="support-description">Ask us how to use a feature, when a profile will be available, how to generate reports or set up a training session and we will give you a walk-thru. You could give us your feedback or make new feature suggestions – our engineering team will love it!</p>
|
||||||
|
</div>
|
||||||
|
<div class="row support-icons d-flex justify-content-around">
|
||||||
|
<div class="col-lg-6 col-12 text-center support-phone-block">
|
||||||
|
<div class="text-center">
|
||||||
|
<img src="/assets/images/about_us/phone_small.png" alt="Phone Icon" />
|
||||||
|
</div>
|
||||||
|
<label for="support-phone mt-sm-0">+91 (836) 235 1011</label>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-12 text-center support-mail-block">
|
||||||
|
<div class="text-center">
|
||||||
|
<img src="/assets/images/about_us/mail_small.png" alt="Mail Icon" />
|
||||||
|
</div>
|
||||||
|
<label for="support-mail"><a href="mailto:support@aissel.com">support@aissel.com</a></label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div> </div>
|
||||||
|
|
||||||
|
</Layout>
|
|
@ -0,0 +1,105 @@
|
||||||
|
---
|
||||||
|
import Layout from "../../layouts/Layout.astro";
|
||||||
|
import WorkPopup from "../../components/WorkPopup.astro"
|
||||||
|
let data = null;
|
||||||
|
|
||||||
|
await fetch(`${import.meta.env.PUBLIC_WEBSITE_URL}/api/careers/work_with_us`)
|
||||||
|
.then(function(response){
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(function(res){
|
||||||
|
data = res.career_job;
|
||||||
|
// console.log(data);
|
||||||
|
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
function hasTags(str) {
|
||||||
|
|
||||||
|
const regex = /<[^>]+>/g; // Matches any sequence between < and >
|
||||||
|
|
||||||
|
return regex.test(str);
|
||||||
|
|
||||||
|
}
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout title="Work With Us | Aissel Technologies">
|
||||||
|
<!-- ∈∈∈ Content ∋∋∋ -->
|
||||||
|
<div class="main-content-block">
|
||||||
|
<div id="work-with-us" class="content">
|
||||||
|
|
||||||
|
<section id="band-zero">
|
||||||
|
<div class="container-fluid ">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-5 col-md-8 mx-lg-5 px-lg-5 py-lg-3 d-flex justify-content-start align-items-center">
|
||||||
|
<h1 class="band-zero-title ms-lg-5">Job Opportunities</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Band One Section -->
|
||||||
|
<section id="band-one">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-lg-7 col-md-11 col-sm-12 col-12 mt-5">
|
||||||
|
{
|
||||||
|
data.map((career) => (
|
||||||
|
<div class="col-lg-12 col-md-12 col-12 job-post mb-3 d-lg-flex d-md-flex border">
|
||||||
|
<div class="col-lg-4 col-md-4 col-12 d-flex">
|
||||||
|
<img class="mobileImage" src=`https://www.aissel.com/public/uploads/career_images/${career.img_url}`/>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-8 col-md-8 col-12 px-3 py-3">
|
||||||
|
<label class="post-title mb-2">{career.title} </label>
|
||||||
|
<p class="post-description lh-base">{hasTags(career.description) ? (
|
||||||
|
<Fragment set:html={career.description}/>
|
||||||
|
) : (
|
||||||
|
career.description
|
||||||
|
)}
|
||||||
|
</p>
|
||||||
|
<!-- col-lg-12 col-12 d-flex d-lg-block d-md-block d-sm-flex -->
|
||||||
|
<div class="row mt-sm-2">
|
||||||
|
<div class="col-md-12 col-6">
|
||||||
|
<a href="#" onclick=`jobPopup(${career},${import.meta.env.PUBLIC_WEBSITE_URL})` class="view-more"
|
||||||
|
data-bs-toggle="modal"
|
||||||
|
data-bs-target=`#careerModal${career.id}`>View more</a>
|
||||||
|
</div>
|
||||||
|
<WorkPopup id={career.id}/>
|
||||||
|
<div class="col-md-12 col-6 mt-lg-3 mt-md-3 text-lg-start text-md-start text-end">
|
||||||
|
<a href=`/careers/apply` class="click-to-apply px-3 py-2">Click to Apply</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))
|
||||||
|
}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-12 mt-5">
|
||||||
|
<div class="side-div border p-3 py-3 d-flex flex-column align-items-center">
|
||||||
|
<p class="side-div-title fs-6 mb-2">Drop your CV here</p>
|
||||||
|
<p class="side-div-text mb-3">We will consider your Profile for future jobs</p>
|
||||||
|
<div>
|
||||||
|
<a href="/careers/apply" class="submit-profile px-3 py-2">Submit Profile</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="side-div border mt-3">
|
||||||
|
<div id="fb-root"></div>
|
||||||
|
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v11.0" nonce="Or3weSHi"></script>
|
||||||
|
<div class="fb-page" data-href="https://www.facebook.com/aisseltechnologies/" data-tabs="timeline" data-width="700" data-height="" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"><blockquote cite="https://www.facebook.com/facebook" class="fb-xfbml-parse-ignore"><a href="https://www.facebook.com/facebook">Facebook</a></blockquote></div>
|
||||||
|
</div>
|
||||||
|
<div class="side-div border mt-3 mb-3" style="min-height:320px;">
|
||||||
|
<a class="twitter-timeline" href="https://twitter.com/AisselTech?ref_src=twsrc%5Etfw">Tweets by AisselTech</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<div class="modal custom-model fade" id="aisselModal" tabindex="-1" aria-labelledby="aisselModalLabel" aria-hidden="true"><div class="modal-dialog mt-5"></div></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</Layout>
|
|
@ -0,0 +1,4 @@
|
||||||
|
.article-description img {
|
||||||
|
max-width: 100% !important;
|
||||||
|
height: auto !important;
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"extends": "astro/tsconfigs/base"
|
||||||
|
}
|
Loading…
Reference in New Issue