미국
국가 선택...
오스트레일리아
싱가포르
덴마크
인도
아랍 에미리트 연방
독일
홍콩
필리핀
미국
인도네시아
// 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의 핵심 멤버로 활동하고 있으며, 선박 관리 분야의 감독관과 관리자를 멘토링하고 새로운 벤처의 성공적인 구현을 감독하는 데 중요한 역할을 맡고 있습니다. Sanjiv는 작은 세부 사항을 신경 쓰면 큰 그림이 제자리를 찾아갈 수 있다고 믿습니다.
산지브 미쉬라
