/** * Onboarding functions.php file. * * @package Divi * @subpackage onboarding * * @since ?? */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Trigger redirect to onboarding page after theme activation. * * @return void */ function et_onboarding_trigger_redirect() { // Do not redirect if WP-CLI is active. if ( defined( 'WP_CLI' ) && WP_CLI ) { return; } if ( ! class_exists( 'ET_Onboarding' ) ) { // get_template_directory() does not output a trailing slash. // {@see https://developer.wordpress.org/reference/functions/get_template_directory/}. require_once get_template_directory() . '/onboarding/onboarding.php'; } ET_Onboarding::redirect_to_onboarding_page(); } add_action( 'after_switch_theme', 'et_onboarding_trigger_redirect' ); /** * Trigger remove transients when theme is changed. * * @return void */ function et_onboarding_remove_transients() { if ( ! class_exists( 'ET_Onboarding' ) ) { // get_template_directory() does not output a trailing slash. // {@see https://developer.wordpress.org/reference/functions/get_template_directory/}. require_once get_template_directory() . '/onboarding/onboarding.php'; } ET_Onboarding::remove_transients(); } add_action( 'switch_theme', 'et_onboarding_remove_transients' ); Jean-Rémi Caillon - Institut Disciples Escoffier

Jean-Rémi Caillon

Chef Jean-Rémi Caillon has newly been awarded two Michelin stars for his restaurant Le Kintessence Restaurant at Courchevel.

Le Kintessence Restaurant was praised for the quality of its produce, the creativity of its cuisine and the level of service in the restaurant.

Chef Caillon imagines refined dishes showcasing ingredients from the finest sources. From unexpected sensations to original discoveries, the chef offers you his world: know-how and inspiration of an artist.

Some previous working places:

L’Hôtel de Ville in Switzerland with Philippe Rochat – 3 Michelin Star
La Chèvre d’Or in France with Philippe Labbé – 2 Michelin Star
L’Abeille at Shangri-La  Paris – 2 Michelin Star