top of page

Uplifting Lives Where it Counts

Having a loved one with Muscular Dystrophy reveals a powerful truth: every child deserves the chance to live fully, explore freely, and simply be a kid. Yet, the constant risk of falls and the challenges of declining motor function can turn even simple activities into daunting obstacles. At The Uplifted Foundation, we are committed to changing that reality. Our mission is to identify, fund, and donate innovative medical devices that empower children with Muscular Dystrophy to enjoy life safely and confidently. From mobility aids to adaptive equipment, we focus on underserved communities where access to these life-changing tools is limited. Because every child, no matter their circumstance, deserves the freedom to live Uplifted.

ChatGPT Image Jul 28, 2025, 09_51_19 AM.png

The Akari Foundation to Receive 200 Perfect Lifts

In July, The Uplifted Foundation proudly partnered with Perfect Lift to donate 200 of their innovative lifting devices to The Akari Foundation. These Perfect Lifts will be raffled to families within the Hispanic community, giving parents and caregivers a safe, simple, and reliable way to transport their children without fear of injury. Thanks to your generous support—and the incredible mission-driven work of Perfect Lift and Akari—200 families can now travel worry free.

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-mdjadug9":"WPhoto","comp-mdjaduga1":"WRichText","comp-mdjaduga3":"WRichText","comp-mdjadugb":"FiveGridLine","comp-mdjadugg":"FiveGridLine","comp-mdjadug2":"WRichText","comp-mdjadug22":"WRichText","comp-mdjadug3":"FiveGridLine","pageBackground_o4mbp":"PageBackground","o4mbp":"Page","comp-mdjadufy":"ClassicSection","comp-mdjadug8":"ClassicSection","comp-mdjadufz1":"StripColumnsContainer","comp-mdjadug1":"StripColumnsContainer","comp-mdjadug02":"Column","comp-mdjadug13":"Column","Containero4mbp":"Group","DYNAMIC_STRUCTURE_CONTAINER":"DynamicStructureContainer","site-root":"DivWithChildren","main_MF":"DivWithChildren","o4mbp_wrapper":"PageMountUnmount","o4mbp_wrapper_background":"PageMountUnmount"}},"appsWarmupData":{},"ooi":{"failedInSsr":{}}}</script> <!-- warmup data end --> <!-- presets polyfill --> </body> </html>