{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js", "ssg:https://framerusercontent.com/modules/SBFkFoPOYBsSLI4o9e1W/Iib0gCqadDh7ojUbnplN/zyfRKLv_N-2.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:hasBorderRadius&&showVideo?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as a}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as n,Link as r}from\"framer\";import{motion as t}from\"framer-motion\";import*as i from\"react\";import{Youtube as o}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js\";export const richText=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Kaea Pearce is a celebrated dancer and choreographer from New Zealand, known for her powerful performances and significant impact on the dance industry. She began her dance journey at 12, training at Auckland\u2019s renowned The Palace Dance Studio under the mentorship of acclaimed choreographer Parris Goebel.\"}),/*#__PURE__*/e(\"p\",{children:\"Today, Kaea continues to shape the dance community through her teaching, choreography, and performances, inspiring dancers across the globe.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Experience & Carer\"})}),/*#__PURE__*/a(\"p\",{children:[\"Kaea Pearce gained global recognition as a member of the renowned Royal Family Dance Crew, celebrated for their impressive achievements, including three consecutive victories at the World Hip Hop Dance Championship. Her talent also shone in the 2015 dance film \",/*#__PURE__*/e(\"em\",{children:\"Born to Dance\"}),' and as a standout performer in Justin Bieber\\'s iconic \"Sorry\" music video.']}),/*#__PURE__*/e(\"p\",{children:\"Kaea\u2019s remarkable portfolio features performances alongside stars like Jennifer Lopez, Ciara, Little Mix, Rihanna, Enrique Iglesias, Kim Petras, and Jason Derulo. She has also collaborated with top brands such as Nike, Coca-Cola, and Savage X Fenty.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Super Weekender Dance Classes & Workshops\"})}),/*#__PURE__*/e(\"p\",{children:\"Don\u2019t miss this opportunity to learn from experienced dance professionals at The Super Weekender. Join us for a range of workshops and dance classes designed to help you build skills, technique and gain confidence.\"}),/*#__PURE__*/e(\"p\",{children:\"Whether you\u2019re just starting out or have years of experience, these sessions offer something valuable for everyone. Get a fresh perspective on dance from instructors who\u2019ve inspired dancers around the world.\"}),/*#__PURE__*/e(\"p\",{children:\"Reserve your spot now! For more information and tickets, head to our ticket shop.\"})]});export const richText1=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Who is Philip Birchall?\"}),/*#__PURE__*/e(\"p\",{children:\"Philip Birchall is a professional commercial dancer and graduate of the prestigious Laine Theatre Arts. He is a versatile performer, trained in many styles including Latin, Ballroom, Contemporary, Jazz, Hip Hop, Ballet, Tap and all forms of rapidly evolving commercial dance.\"}),/*#__PURE__*/e(\"p\",{children:\"Philip is the Creative Director and Choreographer for Twisted Cable Creative, a London-based creative studio, creating cutting-edge Creative Direction, Video Design, and Choreography for stage and screen.\"}),/*#__PURE__*/e(\"h3\",{children:\"Experience & Career\"}),/*#__PURE__*/e(\"p\",{children:'Philip is a distinguished choreographer and dancer with an extensive portfolio in the entertainment industry. His recent collaborations include working with renowned artists such as Girls Aloud, Kylie Minogue, Take That, Anne-Marie, Charli XCX, and Maya Jama on \"Love Island.\" His television appearances feature prominent shows like \"The X Factor,\" \"The Masked Singer,\" \"Britain\\'s Got Talent,\" \"Ant & Dec\\'s Saturday Night Takeaway,\" and \"The Voice UK.\" Philip\\'s film credits encompass \"Men in Black: International,\" \"Cinderella,\" and \"Wicked.\" Additionally, he has partnered with brands including Ann Summers, Schwarzkopf, and Office.'}),/*#__PURE__*/e(\"h3\",{children:\"Super Weekender Dance Classes & Workshops\"}),/*#__PURE__*/e(\"p\",{children:\"Don\u2019t miss this opportunity to learn from experienced dance professionals at The Super Weekender. Join us for a range of workshops and dance classes designed to help you build skills, technique and gain confidence.\"}),/*#__PURE__*/e(\"p\",{children:\"Whether you\u2019re just starting out or have years of experience, these sessions offer something valuable for everyone. Get a fresh perspective on dance from instructors who\u2019ve inspired dancers around the world.\"}),/*#__PURE__*/e(\"p\",{children:\"Reserve your spot now! For more information and tickets, head to our ticket shop.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]});export const richText2=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Who is Ainsley Ricketts?\"}),/*#__PURE__*/e(\"p\",{children:\"Ainsley developed his skills at The Urdang Academy, where he was mentored by renowned UK choreographer Dean Lee. His expertise covers contemporary, lyrical, commercial, and freestyle dance.\"}),/*#__PURE__*/e(\"p\",{children:\"Ainsley has experience across various industry roles, including performing, assisting, and choreographing.\"}),/*#__PURE__*/e(\"p\",{children:\"He teaches at studios worldwide, including some of London\u2019s top dance institutions, and is the founder of the Orenda Dance Programme, launched in December 2018.\"}),/*#__PURE__*/e(\"h3\",{children:\"Experience & Career\"}),/*#__PURE__*/e(\"p\",{children:\"After finishing his training he went into performing in musicals such as Motown (Westend), Charlie and the Chocolate Factory (Westend), Barnum, Bugsy Malone and The Wedding Singing (UK Tour), Legally Blonde (Assistant Choreographer).\"}),/*#__PURE__*/e(\"p\",{children:\"Throughout his training he has assisted on the likes of X Factor UK and many other projects.\"}),/*#__PURE__*/e(\"p\",{children:\"Ainsley had the privilege of dancing for Janet Jackson, Fleur East, Charlie XCX, Troy Sivan, Hailee Steinfield, Rina Sawayama \u2013 Cherry (Music video) & on Strictly Come Dancing (ITV), MTV EMAs.\"}),/*#__PURE__*/e(\"h3\",{children:\"Super Weekender Dance Classes & Workshops\"}),/*#__PURE__*/e(\"p\",{children:\"Don\u2019t miss this opportunity to learn from experienced dance professionals at The Super Weekender. Join us for a range of workshops and dance classes designed to help you build skills, technique and gain confidence.\"}),/*#__PURE__*/e(\"p\",{children:\"Whether you\u2019re just starting out or have years of experience, these sessions offer something valuable for everyone. Get a fresh perspective on dance from instructors who\u2019ve inspired dancers around the world.\"}),/*#__PURE__*/e(\"p\",{children:\"Reserve your spot now! For more information and tickets, head to our ticket shop.\"})]});export const richText3=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Who is Dean Lee?\"}),/*#__PURE__*/e(\"p\",{children:\"London, a city renowned for its arts and entertainment scene, boasts an emblem of cultural excellence in Dean Lee. With over a decade of experience in the dance industry, Dean has carved a path to success, gaining international recognition for his outstanding work.\"}),/*#__PURE__*/e(t.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(o,{...a,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=eAMGBEmvoBw&ab_channel=DEANLEE\"})})}),/*#__PURE__*/e(\"h3\",{children:\"A Formative Start at the Urdang Academy\"}),/*#__PURE__*/e(\"p\",{children:\"Dean's journey into professional dance commenced at the prestigious Urdang Academy in central London, where he was granted a full scholarship. At this renowned institution, he mastered a range of dance styles, including tap, ballet, jazz, contemporary, commercial, hip-hop, and musical theatre. Dean's ambition was to become a versatile and adaptable dancer, a goal he achieved at a remarkably young age.\"}),/*#__PURE__*/e(\"h3\",{children:'A Pivotal Moment: Bolshoi Ballet and \"La Bayad\\xe8re\"'}),/*#__PURE__*/e(\"p\",{children:\"Following his graduation from Urdang, Dean's professional career took off in an extraordinary manner. He was handpicked to collaborate with the world-renowned Bolshoi Ballet during their London residency for the timeless ballet, \\\"La Bayad\\xe8re.\\\" This experience set the stage for Dean's career, showcasing his ability to achieve perfection in the demanding and competitive world of professional dance.\"}),/*#__PURE__*/e(\"h3\",{children:\"Collaboration with Prominent Artists and Shows\"}),/*#__PURE__*/e(\"p\",{children:\"Dean's career is punctuated by collaborations with a plethora of high-profile music artists, TV shows, live tours, and the fashion industry. He has worked alongside esteemed performers such as Janet Jackson, Kylie Minogue, Chaka Khan, The Jacksons, Little Mix, Shoshana Bean, Leona Lewis, and the Pussycat Dolls. Notably, Dean's choreography played a pivotal role in the iconic reunion performance of The Pussycat Dolls in 2019, where he skillfully captured and enhanced each artist's unique persona through dance.\"}),/*#__PURE__*/e(\"p\",{children:'In the realm of television, Dean\\'s portfolio boasts an equally impressive list of credits. He has lent his talents to shows such as \"The X-Factor\" (London & U.S.A), \"Ant & Dec\u2019s Saturday Night Takeaway,\" \"Strictly Come Dancing,\" \"The Royal Variety Show,\" \"The Masked Singer,\" \"So You Think You Can Dance\" (London & Poland), and \"The Greatest Dancer 2020.\"'}),/*#__PURE__*/e(\"p\",{children:\"Dean's contributions to the fashion industry are remarkable as well. Collaborating with renowned fashion houses like Dolce & Gabbana, Versace, John Paul Gaultier, and Philip Treacy, Dean has demonstrated his ability to blend art forms and create visually stunning spectacles.\"}),/*#__PURE__*/e(\"h3\",{children:\"West End Spotlight: Thriller Live and More\"}),/*#__PURE__*/e(\"p\",{children:\"London's West End, the renowned theatre district, has also witnessed Dean's talent. He notably starred in the critically acclaimed Michael Jackson tribute show, \\\"Thriller Live,\\\" assuming roles such as the Swing, Dance Captain, and Resident Director.\"}),/*#__PURE__*/e(t.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(o,{...a,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/JaLlww-tak4\"})})}),/*#__PURE__*/e(\"h2\",{children:\"A Visionary Creative\"}),/*#__PURE__*/e(\"p\",{children:\"Beyond his accomplishments as a dancer and choreographer, Dean Lee is a visionary creative. His passion for his craft constantly evolves, with each project revealing a fresh perspective on the art of movement. Dean is dedicated to delivering innovative work that exemplifies perfection and introduces exciting concepts.\"}),/*#__PURE__*/e(\"h3\",{children:\"Sharing Knowledge and Nurturing Talent\"}),/*#__PURE__*/e(\"p\",{children:\"Dean's wealth of experience and passion shine through in his engaging, challenging, and informative dance classes. As a seasoned teacher and choreographer in the UK, Dean firmly believes in establishing a solid technical foundation in dance. Alongside intricate routines, he helps dancers channel their energy, style, and technique effectively, deepening their understanding of their bodies and the industry as a whole.\"}),/*#__PURE__*/e(\"p\",{children:\"A notable achievement in Dean's career is the establishment of his all-male dance company, Strike Boys Co. In collaboration with Solange Urdang, Dean annually selects a handful of students for intensive dance training. The program culminates in a production produced and performed under Dean's creative direction, demonstrating his commitment to nurturing the next generation of dancers.\"}),/*#__PURE__*/e(\"h3\",{children:\"A Remarkable Journey\"}),/*#__PURE__*/e(\"p\",{children:'From captivating 15 million viewers on \"X-Factor UK\" to dancing with Take That on their UK Stadium Tour, \"The Circus,\" Dean Lee has achieved extraordinary milestones throughout his career. His choreography has graced world tours, fashion icons, and the global stage. Dean\\'s versatility, talent, and unwavering dedication to the craft of dance continue to inspire and leave a lasting impact on the dance industry, one move at a time.'})]});export const richText4=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Dean Lee is a renowned dance visionary and performer based in London. With over a decade of experience in the dance industry, he has achieved international recognition for his exceptional talent and versatile skills. From his formative years at the Urdang Academy to collaborating with renowned artists and appearing on popular TV shows, Dean has left an indelible mark on the global dance scene. \"})});export const richText5=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Dean trained at the renowned Urdang Academy in central London, where he was granted a full scholarship, where he mastered a range of dance styles, including tap, ballet, jazz, contemporary, commercial, hip-hop, and musical theatre.\"})});export const richText6=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Who is Musa Motha?\"}),/*#__PURE__*/e(\"p\",{children:'Born in 1995 in Johannesburg, South Africa, Musa Motha embarked on an extraordinary journey as a street dancer in 2010. His talent quickly advanced, earning him appearances in music videos, including Drake\\'s \"One Dance\". This marked the beginning of his awe-inspiring dance career, which saw him mastering various genres, such as contemporary, afro fusion, tap dance, and ballet.'}),/*#__PURE__*/e(t.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(o,{...a,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/2q8TNBAmfJM\"})})}),/*#__PURE__*/e(\"h3\",{children:\"Overcoming Challenges: The Battle with Bone Cancer\"}),/*#__PURE__*/e(\"p\",{children:\"In 2006, an unexpected diagnosis change Musa's life forever. After developing cancer in his left leg, the 10-year old had to undergo an amputation. Musa, a remarkable embodiment of personal growth, didn't see this as a setback. Instead, he chose to redefine the word \\\"impossible\\\" in his life. His extraordinary spirit and determination have been the driving force behind his incredible journey from a street dancer to a globally recognized performer.\"}),/*#__PURE__*/e(\"h3\",{children:\"The Journey to International Fame\"}),/*#__PURE__*/e(\"p\",{children:\"Musa joined the renowned Vuyani Dance Theatre in Johannesburg, South Africa, in 2018, where he honed his skills in various dance forms. This period served as a stepping stone in his career, setting the stage for international fame. He started touring internationally in 2019, making his mark in the world of dance. His talent earned him features in fashion and art magazines, as well as international newspapers, boosting his recognition and proving that he was not only a dancer but also a motivational speaker with a compelling story to share.\"}),/*#__PURE__*/e(\"h3\",{children:\"A New Chapter in London\"}),/*#__PURE__*/e(\"p\",{children:\"In February 2022, Musa made a significant move to London, marking a milestone in his career. There, he became a member of the Arsenal Amputee Football club and part of the Peaky Blinders theatre dance show. His talents extended beyond dance; he was also an entrepreneur, DJ, photographer, videographer, dog trainer, car modifier, and investor. Musa's multilingualism, fluency in Sotho, Zulu, Xhosa, Tswana, and English, further helped him connect with diverse audiences worldwide.\"}),/*#__PURE__*/e(\"h3\",{children:\"Britain's Got Talent: A Major Breakthrough\"}),/*#__PURE__*/e(\"p\",{children:\"Musa's major breakthrough came in 2023 when he auditioned for Britain's Got Talent (BGT), performing a mesmerizing routine to \\\"Runnin' (Lose It All)\\\" by Naughty Boy featuring Beyonc\\xe9. His performance brought the audience to their feet, chanting for a 'golden buzzer'. The four judges, including Simon Cowell, were so moved by his performance that they collectively pressed the golden buzzer, ensuring his place in the live semi-finals.\"}),/*#__PURE__*/e(t.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(o,{...a,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=7u4Dy45FIGQ&ab_channel=Britain%27sGotTalent\"})})}),/*#__PURE__*/e(\"p\",{children:'Musa\\'s semi-final performance was equally awe-inspiring. Dancing alone initially, using one crutch, he performed to \"Where We Come Alive\" by Ruelle. He was later joined by backing dancers, ending the performance with the use of both crutches. Once again, the judges and audience were deeply moved, securing him a spot in the final, where he was one of the ten finalists.'}),/*#__PURE__*/e(\"h3\",{children:\"Musa Motha: An Inspiration to All\"}),/*#__PURE__*/e(\"p\",{children:\"In the face of adversity, Musa Motha has become a beacon of hope, challenging social stereotypes and inspiring others with his story. His ability to use his personal experience to connect with the audience and make them happy is what sets him apart. From performing on the streets of Johannesburg to winning the hearts of thousands and stunning all the judges on Britain's Got Talent, Musa Motha is a testament to the power of resilience and the human spirit!\"}),/*#__PURE__*/e(\"h2\",{children:\"Musa Motha at The Super Weekender\"}),/*#__PURE__*/e(\"h3\",{children:\"Dance Classes\"}),/*#__PURE__*/e(\"p\",{children:\"Immerse yourself in the world of an upcoming dance legend at this year's Super Weekender [1st-3rd December 2023]! Whether you're an aspiring dancer or an experienced performer, this is your golden opportunity to learn from a master who has overcome adversity to redefine dance. Musa Motha's workshops provide a unique chance to refine your skills, boost your confidence, and uncover the secrets behind his compelling choreography.\"}),/*#__PURE__*/e(\"h3\",{children:\"Performances\"}),/*#__PURE__*/e(\"p\",{children:\"But the excitement doesn't stop there! Attendees will also have the privilege of witnessing Musa Motha in action as he delivers a performance that promises to captivate and inspire. Experience the passion, resilience, and creativity that have propelled Musa to global recognition and made him a beloved figure in the world of dance.\"}),/*#__PURE__*/e(\"p\",{children:\"Musa's approach to dance, born from his unique personal story, offers a teaching perspective that allows students to truly connect with the art of dance. Regardless of your level of experience, Musa's workshops will provide a supportive and engaging environment for you to perfect your technique and unlock your potential.\"})]});export const richText7=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Musa Motha is a South African amputee dancer and choreographer. Musa began his career as a street dancer in 2010\u200B\u200B and gained international recognition as a finalist on Britain's Got Talent in 2023. \"})});export const richText8=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"As of 2023, Musa Motha is 27 years old.\"})});export const richText9=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Musa Motha was born and raised in Sebokeng, south of Johannesburg, South Africa. He currently lives in London in the UK.\"})});export const richText10=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Who is Joshua Base Pilmore?\"}),/*#__PURE__*/e(\"p\",{children:\"If you're into the world of dance, you'll have heard about Joshua Base Pilmore! Hailing from Leicester, Joshua is a choreography superstar. His vibrant style spans across the commercial dance industry, touching everything from TV adverts for big names like Vogue, Marks & Spencer and Sony, to energetic music videos and exhilarating live performances. Most recently, he choreographed a world tour for British-Japanese pop sensation Rina Sawayama, who's just collaborated with pop icon Lady Gaga!\"}),/*#__PURE__*/e(\"p\",{children:\"Joshua's dance journey began with Latin and Ballroom, where he competed around the country. But his passion for dance didn't stop there. He discovered Studio 79 and got involved in commercial and street dance, expanding his dance vocabulary. Even at 16, he was driven, forming his own dance company that competed at various street dance championships and events across the UK, earning titles including Leicester & The Midland's Best Dance Crew.\"}),/*#__PURE__*/e(\"img\",{alt:\"Joshua Base Pilmore\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,efXvCrpMq66joTr9wMUZZMK2k.png?originalFilename=unknown.png\",\"data-framer-height\":\"1086\",\"data-framer-width\":\"1638\",height:\"543\",src:\"https://framerusercontent.com/images/efXvCrpMq66joTr9wMUZZMK2k.png\",srcSet:\"https://framerusercontent.com/images/efXvCrpMq66joTr9wMUZZMK2k.png?scale-down-to=512 512w,https://framerusercontent.com/images/efXvCrpMq66joTr9wMUZZMK2k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/efXvCrpMq66joTr9wMUZZMK2k.png 1638w\",style:{aspectRatio:\"1638 / 1086\"},width:\"819\"}),/*#__PURE__*/e(\"h2\",{children:\"Classes & Workshops\"}),/*#__PURE__*/e(\"p\",{children:\"In addition to his choreographic exploits, Joshua is a dedicated teacher and is no stranger to sharing his extraordinary talents with aspiring dancers! He holds a weekly class at Base Studios in London and teaches at Creative Academy and Jelli Studios. He's also taught at other notable dance institutions including Move It, HDI, Studio 68, Pineapple, and Runway House.\u200B\"}),/*#__PURE__*/e(\"h3\",{children:\"Your Chance to Take Part!\"}),/*#__PURE__*/a(\"p\",{children:[\"And the best bit? Joshua Base Pilmore, along with other dance legends like \",/*#__PURE__*/e(r,{href:{pathVariables:{Z6V8HtJ9m:\"dane-bates\"},unresolvedPathSlugs:{Z6V8HtJ9m:{collectionId:\"zyfRKLv_N\",collectionItemId:\"vG5GljFWw\"}},webPageId:\"QhaUXWdFO\"},nodeId:\"zyfRKLv_N\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Dane Bates\"})}),\", is heading to the Super Weekender 2025! Having taught dance lessons across the world, Joshua's latest stop is this unmissable event. His workshops & dance lessons promise a whirlwind of inspiration, electrifying energy, and, of course, unforgettable dance moves. It's an experience not to be missed, so be sure to mark your calendars!\"]})]});export const richText11=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Who are The Royal Family?\"}),/*#__PURE__*/a(\"p\",{children:[\"Hailing from New Zealand, The Royal Family Dance Crew is a renowned Hip Hop dance group that's taking the world by storm. Choreographed by the renowned dancer Parris Goebel and based out of the \",/*#__PURE__*/e(r,{href:\"https://www.thepalacedancestudio.com/\",nodeId:\"zyfRKLv_N\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Palace Dance Studio\"})}),\", this high-energy group is making waves internationally with their mesmerizing viral performances, signature choreography, and infectious stage presence.\"]}),/*#__PURE__*/e(\"img\",{alt:\"The Royal Family Dance Crew\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,iPe3hBzNip1WuGuSDVUk3bwmjI.jpeg?preferredSize=medium\",\"data-framer-height\":\"1536\",\"data-framer-width\":\"2303\",height:\"768\",src:\"https://framerusercontent.com/images/iPe3hBzNip1WuGuSDVUk3bwmjI.jpeg?scale-down-to=1024\",style:{aspectRatio:\"2303 / 1536\"},width:\"1151\"}),/*#__PURE__*/e(\"h3\",{children:\"A Decade of Achievements\"}),/*#__PURE__*/a(\"p\",{children:[\"Their trophy case is no stranger to gold; The Royal Family is a multiple-time national champion of Hip Hop International New Zealand and a gold medalist at events such the \",/*#__PURE__*/e(r,{href:\"https://hiphopinternational.com/world-hip-hop-dance-championship/\",nodeId:\"zyfRKLv_N\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"World Hip Hop Dance Championships\"})}),\". But their history of victory dances don't end there; the crew has also scored numerous national and international titles, establishing the dancers as a dominant force in the dance industry.\"]}),/*#__PURE__*/e(\"h3\",{children:\"Music Videos & Sharing the Spotlight with Stars\"}),/*#__PURE__*/e(\"p\",{children:\"Their talents have also been noticed outside the dancing world, having performed on stage with multiple celebrities. The Royal Family Dance Crew has dazzled audiences alongside K-pop heavyweights CL and Big Bang at the MNET Asian Awards. They've also featured in Justin Bieber's \\\"Purpose\\\" music video series and other viral chart-topping hits 'Sorry' and 'What Do You Mean,' catapulting them further into global recognition.\"}),/*#__PURE__*/e(t.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(o,{...a,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/fRh_vgS2dFE\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'Music Video: \"Sorry\" by Justin Bieber. Choreographed by Parris Goebel and performed by The Ladies of ReQuest & The Royal Family Dance Crews from The Palace Dance Studio in New Zealand.'})}),/*#__PURE__*/e(\"h3\",{children:\"The Influence of The Royal Family\"}),/*#__PURE__*/e(\"p\",{children:\"This vibrant dance crew doesn't just impress on the dance floor; the Parris Goebel-led dancers have wowed alongside an array of big names including Rihanna, Jennifer Lopez, Justin Bieber, Jason Derulo, PSY, Troy Boi, Ciara, CL & Enrique Iglesias in music videos and a range of live shows. The Royal Family's compelling performances and iconic choreography, born out of The Palace Dance Studio in New Zealand, have accumulated over 10 billion views across various video platforms, truly embodying their global impact.\"}),/*#__PURE__*/e(\"img\",{alt:\"The Royal Family Dance Crew\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,LrN2eYLt8pUqaM3fwznnabUc4.jpeg?preferredSize=medium\",\"data-framer-height\":\"1536\",\"data-framer-width\":\"2303\",height:\"768\",src:\"https://framerusercontent.com/images/LrN2eYLt8pUqaM3fwznnabUc4.jpeg?scale-down-to=1024\",style:{aspectRatio:\"2303 / 1536\"},width:\"1151\"}),/*#__PURE__*/e(\"h3\",{children:\"The Palace Dance Studio: Birthplace of a Phenomenon\"}),/*#__PURE__*/e(\"p\",{children:\"Steeped in the rich tradition of dance, The Palace Dance Studio in New Zealand serves as the nurturing ground for The Royal Family. Known for fostering creativity and encouraging self-expression, this dynamic space mirrors the dance crew's innovative spirit and relentless pursuit of excellence.\"}),/*#__PURE__*/e(\"p\",{children:\"At the heart of the studio, you'll find the crew's very own Parris Goebel and her father, Brett. Their passion for dance and commitment to cultivating talent fuels the ethos of the venue. The space serves as both a training ground for artists and a sanctuary, where every dancer can explore their potential, hone their skills, and embrace the joy of dance.\"}),/*#__PURE__*/e(\"p\",{children:\"It's here, in this vibrant dance hub, that their globally-acclaimed routines are created and perfected. The Palace Dance Studio is more than just a dance studio; it's a cradle of creativity, an incubator of talent, and the proud home of the world-renowned Royal Family Dance Crew.\"}),/*#__PURE__*/e(\"p\",{children:\"Join us this year at The Super Weekender to witness the remarkable fruits of their labor, both in their mesmerizing live performance and the exceptional workshops they'll be offering. Keep reading to see what's on offer!\"}),/*#__PURE__*/e(\"h2\",{children:\"The Royal Family at The Super Weekender\"}),/*#__PURE__*/e(\"p\",{children:\"Prepare to immerse yourself in a dynamic experience like no other this year as The Royal Family Dance Crew takes the stage for an exclusive guest performance at The Super Weekender [1st-3rd December 2023]. The internationally-acclaimed dance group is set to share their unique Polyswagg style and infectious energy in what promises to be an unforgettable weekend!\"}),/*#__PURE__*/e(\"h3\",{children:\"Workshops & Dance Classes\"}),/*#__PURE__*/e(\"p\",{children:\"Ever dreamt of learning from the best? The Royal Family Dance Crew is not just about breathtaking performances; they're also passionate about sharing their expertise and inspiring the next generation of dancers. You can take part in our dance workshops at the unmissable Super Weekender dance school, led by members of the crew themselves! It's a priceless opportunity to learn the fundamentals of their unique dance style, pick up new skills, and maybe even a few of their signature moves!\"}),/*#__PURE__*/e(\"h3\",{children:\"Live Performance\"}),/*#__PURE__*/e(\"p\",{children:\"The magic happens when the lights go down and the spotlight hits. Brace yourself for an exhilarating live performance from The Royal Family and witness firsthand the world-beating choreography and high-energy routines that have taken them from The Palace Dance Studio in New Zealand to global dancing stardom. Get ready for a captivating display of talent and the sheer joy of dance that encapsulates everything The Royal Family does!\"}),/*#__PURE__*/e(\"p\",{children:\"If you don't want to miss out on this once-in-a-lifetime chance to learn from the artists and experience the extraordinary talents of The Royal Family Dance Crew, you can head to our ticket shop for tickets and more information!\"})]});export const richText12=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is Chance2Dance?\"}),/*#__PURE__*/e(\"p\",{children:\"Chance2Dance has been inspiring dancers and creating unforgettable experiences since its inception in 2011, driven by a singular mission: to offer dance schools unparalleled performance opportunities.\"}),/*#__PURE__*/e(\"p\",{children:\"We understand that performing is an essential aspect of a dancer's journey, and we're dedicated to making every Chance2Dance event an unforgettable experience. By focusing on exceptional production quality and a committed team, we strive to establish a gold standard for dance shows across the UK.\"}),/*#__PURE__*/e(\"p\",{children:\"From humble beginnings with just one event in the UK, Chance2Dance has grown into a dance industry powerhouse, hosting up to 20 exhibitions and national dance events annually.\"}),/*#__PURE__*/e(\"h3\",{children:\"A Word From the Chance2Dance Team\"}),/*#__PURE__*/e(\"p\",{children:\"Chance2Dance was designed as a platform for dancers to showcase their talents in a professional, nurturing environment. As we continue to develop fresh and exhilarating performance opportunities, we're thrilled about what the future holds! We recognize that our success is built upon the unwavering support and enthusiasm of dance schools, dancers, parents, and supporters who attend our events, and we extend our heartfelt gratitude for your ongoing encouragement!\"})]});export const richText13=/*#__PURE__*/a(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Who is Dane Bates?\"}),/*#__PURE__*/a(\"p\",{children:[\"A graduate of the prestigious London Studio Centre, Dane William Bates has captivated audiences on the West End and throughout numerous UK tours. As the choreographer and driving force behind the sensational \",/*#__PURE__*/e(r,{href:\"https://www.facebook.com/profile.php?id=100063332461888\",nodeId:\"zyfRKLv_N\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Dane Bates Collective\"})}),', he has made a remarkable impact on the UK dance scene through BBC1\\'s hit show, \"The Greatest Dancer.\"']}),/*#__PURE__*/e(\"h3\",{children:\"Experience & Career\"}),/*#__PURE__*/e(\"p\",{children:\"With a vast array of choreography experience in TV, stage, and cruise companies, Dane's current choreography credits include TV adverts for Stoptober NHS online and the Weather Channel, along with Channel 4's Bo Selecta and E4's Lillies. He has also showcased his technical knowledge and talents on Britain's Got Talent and Ireland's Got Talent, as well as in five consecutive Pantomime productions, fashion shows, and corporate events.\"}),/*#__PURE__*/e(t.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(o,{...a,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/01KgnkjLSEE\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/a(\"p\",{children:['Dane\\'s performances have been featured in the \"Best of the Musical\" European Arena Tour and \"The Illusionists\" in London, the UK and International Tours, and ITV. He shares his expertise through collaborations with Ballet West Scotland and teaching at distinguished institutions like ',/*#__PURE__*/e(r,{href:\"https://www.italiaconti.com/\",nodeId:\"zyfRKLv_N\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Italia Conti\"})}),\", \",/*#__PURE__*/e(r,{href:\"https://bodyworkcompany.co.uk/\",nodeId:\"zyfRKLv_N\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Bodywork\"})}),\", GSA, \",/*#__PURE__*/e(r,{href:\"https://www.londonstudiocentre.org/\",nodeId:\"zyfRKLv_N\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"London Studio Centre\"})}),\", \",/*#__PURE__*/e(r,{href:\"https://www.philwinstonstheatreworks.com/\",nodeId:\"zyfRKLv_N\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Phil Winstons Theatre Works\"})}),\",\",/*#__PURE__*/e(r,{href:\"https://www.maddcollege.co.uk/\",nodeId:\"zyfRKLv_N\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\" MADD College\"})}),\", and Studio 76. His passion for dance has led him to inspire students all over the world; he's taught masterclasses across China, LA, Greece, London, and Paris!\"]}),/*#__PURE__*/e(\"p\",{children:\"In addition to his impressive dance career - both solo and with the Dane Bates Collective - Dane serves as the creative director for Eden Dancewear, choreographing amazing performances in their corporate events. With a sparkling resume and a passion for dance that knows no bounds, Dane Bates is a true luminary in the dance world.\"}),/*#__PURE__*/e(\"h3\",{children:\"Super Weekender Dance Classes & Workshops\"}),/*#__PURE__*/a(\"p\",{children:[\"Don't miss your chance to learn from the master himself! \",/*#__PURE__*/e(r,{href:{webPageId:\"augiA20Il\"},nodeId:\"zyfRKLv_N\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Super Weekender\"})}),\" is thrilled to present an exclusive opportunity to participate in the one-off \",/*#__PURE__*/e(\"em\",{children:\"Dane Bates Dance School at \"}),\"this year's exhibition, with highly sought-after workshops and dance classes. This incredible experience allows you to immerse yourself in the creative world of a dance legend and gain valuable insights from his wealth of knowledge and expertise.\"]}),/*#__PURE__*/e(\"p\",{children:\"Whether you're an aspiring dancer or an experienced performer, Dane Bates' workshops offer a unique chance to hone your skills, boost your confidence, and learn the secrets behind his captivating choreography. It's not every day that you get to train with a true dance visionary who has inspired countless students around the globe!\"}),/*#__PURE__*/a(\"p\",{children:[\"To make the most of this opportunity and let Dane help you to perfect your technique (whether you're a total beginner or an experienced dancer), secure your spot at at Super Weekender class! For additional information on tickets, head to our \",/*#__PURE__*/e(r,{href:{webPageId:\"E6bYPb4yL\"},nodeId:\"zyfRKLv_N\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"ticket shop\"})}),\".\"]})]});export const richText14=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:'Dane Bates is a dance teacher and choreographer, known for forming the dance group \"Dane Bates Collective.\" '})});export const richText15=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/a(\"p\",{children:[\"This dance group consists of girls of a range of ages, from young teenagers to adults. Dane selected the best dancers he had worked with throughout the UK to be part of this group, and they reached the Semi-Finals of \",/*#__PURE__*/e(r,{href:\"https://bgt.fandom.com/wiki/Series_15\",nodeId:\"zyfRKLv_N\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Series 15\"})}),\" of Britain's Got Talent!\"]})});export const richText16=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Yes! Dane is going to be at The Super Weekender 2025, sharing his wealth of dance experience in exclusive dance classes and workshops.\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"richText5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "richText", "u", "x", "p", "richText1", "richText2", "richText3", "motion", "ComponentPresetsConsumer", "Youtube", "richText4", "richText5", "richText6", "richText7", "richText8", "richText9", "richText10", "Link", "richText11", "richText12", "richText13", "richText14", "richText15", "richText16", "__FramerMetadata__"]
}
