top of page

Our Purpose

Committed to Uplifting Lives

Community Awareness:

The Uplifted Foundation is dedicated to enhancing awareness of Muscular Dystrophy within underserved communities, ensuring that children receive diagnoses they desperately need. By advocating for awareness, we strive to create change and empower families through access to vital resources.

Assisted Thriving:

Our secondary mission involves providing medical devices like the Perfect Lift to aid those living with Duchenne, improving their quality of life, and enhancing independence. Every device donated carries the promise of uplifting living standards.

IMG_1466.jpeg
Like many siblings of someone with muscular dystrophy, I don't remember a time when Dylan didn't have Duchenne. It never stopped us from being dumb kids, we still raised Hell in our home, but I knew he was different. Trips to hospitals all over America, a new drug every month, different news from doctors, each experience seemingly more draining than the last. However, through all of the struggle, something stood out to me. No matter what tests were done on him, how much the timetables had moved, Dylan never came home a patient; he always stayed a kid. It was his drive to thrive that inspired me to co-found The Uplifted Foundation.
bottom of page
// backend/events.jsw import { fetch } from 'wix-fetch'; import { getSecret } from 'wix-secrets-backend'; // if you need API keys /** * Fetch upcoming events from multiple sources. * Swap out the example URLs with real API endpoints or RSS feeds. */ export async function getCommunityEvents() { const events = []; // --- Example: Eventbrite (requires API key) --- // const EB_KEY = await getSecret("eventbriteApiKey"); // let resp = await fetch("https://www.eventbriteapi.com/v3/organizations/YOUR_ORG_ID/events/", { // headers: { Authorization: `Bearer ${EB_KEY}` } // }); // let data = await resp.json(); // data.events.forEach(e => { // events.push({ // title: e.name.text, // date: e.start.local, // link: e.url // }); // }); // --- Example: A site with JSON endpoint --- try { let resp2 = await fetch("https://example.org/api/upcoming-events"); if (resp2.ok) { let list = await resp2.json(); // assume [{title, date, url}, …] list.forEach(e => { events.push({ title: e.title, date: e.date, link: e.url }); }); } } catch (err) { console.error("Error fetching from example.org", err); } // --- Example: RSS feed parsing (XML) --- try { let resp3 = await fetch("https://another.org/events/rss.xml"); if (resp3.ok) { let xml = await resp3.text(); // simple regex-based parsing – for production, use a proper XML parser const itemRegex = /[\s\S]*?<\/item>/g; let items = xml.match(itemRegex)||[]; items.forEach(item => { let titleMatch = item.match(/<!\[CDATA\[(.*?)\]\]><\/title>/); let linkMatch = item.match(/<link>(.*?)<\/link>/); let dateMatch = item.match(/<pubDate>(.*?)<\/pubDate>/); if (titleMatch && linkMatch && dateMatch) { events.push({ title: titleMatch[1], date: new Date(dateMatch[1]).toISOString(), link: linkMatch[1] }); } }); } } catch (err) { console.error("Error parsing RSS feed", err); } // Sort by date events.sort((a, b) => new Date(a.date) - new Date(b.date)); return events; } <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyEnd end"></script> <!--pageHtmlEmbeds.bodyEnd end--> <!-- domStoreHtml --> <svg data-dom-store style="display:none"><defs id="dom-store-defs"></defs></svg> <!-- warmup data start --> <script type="application/json" id="wix-warmup-data">{"platform":{"ssrPropsUpdates":[],"ssrStyleUpdates":[],"ssrStructureUpdates":[]},"pages":{"compIdToTypeMap":{"CONTROLLER_COMP_CUSTOM_ID":"AppController","comp-mdd9i52v1":"LoginSocialBar","comp-met05fpt":"WPhoto","comp-mcxugj5t4":"SiteButton","comp-mcxugj6b8":"WRichText","comp-me8ri557":"LinkBar","comp-mcxugj6l1":"WRichText","comp-mcxugj5z2":"HamburgerOpenButton","comp-mcxugj6c10":"WRichText","comp-mcxugj6d5":"WRichText","comp-mcxugj652":"HamburgerCloseButton","comp-mcxugj661":"ExpandableMenu","masterPage":"MasterPage","PAGES_CONTAINER":"PagesContainer","SITE_HEADER":"HeaderContainer","SITE_FOOTER":"FooterContainer","SITE_PAGES":"PageGroup","comp-mcxugj4z3":"StripColumnsContainer","comp-mdd9i526":"AppWidget","comp-mcxugj6a2":"StripColumnsContainer","comp-mcxugj5a":"Column","comp-mcxugj5s1":"Column","comp-mcxugj5t":"Column","comp-mcxugj5x9":"Column","comp-mcxugj6b4":"Column","comp-mcxugj6k15":"Column","comp-mcxugj5y3":"HamburgerMenuRoot","comp-mcxugj6c7":"Container","comp-mcxugj62":"HamburgerOverlay","comp-mcxugj63":"StripColumnsContainer","comp-mcxugj633":"Column","comp-mcxugj644":"HamburgerMenuContainer","BACKGROUND_GROUP":"BackgroundGroup","SCROLL_TO_TOP":"Anchor","SCROLL_TO_BOTTOM":"Anchor","soapAfterPagesContainer":"MeshGroup","SKIP_TO_CONTENT_BTN":"SkipToContentButton","comp-mdnj87t0":"WRichText","comp-mcxugo784":"WRichText","comp-mdnj96d2":"WRichText","comp-mcxugo791":"WRichText","comp-mdnngfke":"WPhoto","comp-mcxugo762":"WRichText","comp-mdnj3ujn8":"WRichText","comp-mdnjd31w7":"WRichText","comp-mdnjrp5h":"WRichText","comp-mdnk5g1j":"WRichText","comp-mdnkdk90":"WRichText","pageBackground_yopwb":"PageBackground","yopwb":"Page","comp-mcxugo721":"ClassicSection","comp-mdnjd31b":"ClassicSection","comp-mcxugo741":"StripColumnsContainer","comp-mdnj3ugu":"StripColumnsContainer","comp-mdnjd31l":"SlideShowContainer","comp-mcxugo744":"Column","comp-mdnj3ujm1":"Column","comp-mdnjd31u4":"SlideShowSlide","comp-mdnjd31x7":"SlideShowSlide","comp-mdnjd3204":"SlideShowSlide","Containeryopwb":"Group","DYNAMIC_STRUCTURE_CONTAINER":"DynamicStructureContainer","site-root":"DivWithChildren","main_MF":"DivWithChildren","yopwb_wrapper":"PageMountUnmount","yopwb_wrapper_background":"PageMountUnmount"}},"appsWarmupData":{},"ooi":{"failedInSsr":{}}}</script> <!-- warmup data end --> <!-- presets polyfill --> </body> </html>