米国
国を選択...
オーストラリア
シンガポール
デンマーク
インド
アラブ首長国連邦
ドイツ
香港
フィリピン
米国
インドネシア
// Get current language from URL or HTML
function getCurrentLanguage() {
const languageCodes = ['ko', 'zh', 'ja'];
const pathSegments = window.location.pathname.split('/');
const pathLang = pathSegments.find(segment => languageCodes.includes(segment));
if (pathLang) return pathLang;
const htmlLang = document.documentElement.lang;
if (htmlLang && languageCodes.includes(htmlLang)) return htmlLang;
return 'en';
}
// Get current country from URL
function getCurrentCountry() {
const path = window.location.pathname;
const countries = ['australia', 'singapore', 'copenhagen', 'india', 'dubai', 'germany', 'hongkong', 'philippines', 'usa','indonesia'];
// Look for country name in URL
const currentCountry = countries.find(country =>
path.toLowerCase().includes(`/meet-the-team/${country}/`)
);
return currentCountry || '';
}
// Set the dropdown to current country
function setCurrentCountry() {
const currentCountry = getCurrentCountry();
const dropdown = document.getElementById('countryRedirect');
if (currentCountry && dropdown) {
dropdown.value = currentCountry;
}
}
function redirectToCountry(country) {
if (!country) return;
const baseUrl = 'https://www.synergymarinegroup.com';
const lang = getCurrentLanguage();
// Construct URL based on language
let url;
if (lang === 'en') {
url = `${baseUrl}/about/meet-the-team/${country}/`;
} else {
url = `${baseUrl}/${lang}/about/meet-the-team/${country}/`;
}
// Only redirect if we're going to a different country
if (country !== getCurrentCountry()) {
window.location.href = url;
}
}
// Set current country when page loads
document.addEventListener('DOMContentLoaded', setCurrentCountry);
リーダーシップチーム
30年以上の業界経験を持つ海洋エンジニアであるSanjivは、Synergyの船舶管理部門を率いています。 彼は2015年からSynergyの主要メンバーであり、船舶管理の監督者と管理者を指導し、新しいベンチャーの成功を監督する上で重要な役割を果たしています。 サンジブは、細部に気を配ることで、全体像がうまくいくと信じています。
サンジブ・ミシュラ
