11205 Knott Ave. Suite E, Cypress, CA, 90630
714-893-7399
HOME
/
ABOUT US
/
About SCPPT
For nearly four decades, South Coast Pediatric Physical Therapy Inc. (SCPPT) has been helping children across Orange County grow into their full potential. As one of the region’s most trusted pediatric therapy clinics, we provide physical, occupational, and speech therapy in a nurturing environment where children feel supported and families feel understood.
Our Mission
To provide compassionate, evidence-based care that helps every child reach their fullest potential. We empower families through education, encouragement, and collaboration—because meaningful progress happens when caregivers and therapists work together.
Our Team
At the heart of South Coast Pediatric Physical Therapy is a team of experienced, licensed professionals who care deeply about every child they serve. Many of our therapists have been part of the SCPPT family for 10 years or more, offering not only clinical expertise but also continuity, compassion, and lasting relationships with the families they support.
Our multidisciplinary staff includes physical, occupational, and speech therapists—each highly trained in pediatric development and rehabilitation. Together, they bring decades of combined experience and advanced certifications across a range of disciples.
What sets our team apart is more than expertise—it’s the way they connect with children and families. Every therapist approaches care with patience, creativity, and genuine joy, turning therapy into play and progress into possibility.
A Legacy of Care
Founded in 1989 by Laurie and Jerry Beeler, SCPPT has long been known for its clinical excellence, long-term staff, and family-centered care. The Beelers built a clinic that felt like a community—a place where children were known by name and parents felt supported on every step of their journey.
In October 2025, the Beelers passed the torch to Dr. Jonathan Baik, PT, DPT, a Board-Certified Clinical Specialist in Pediatric Physical Therapy who has served at SCPPT for over a decade. Under Jonathan’s leadership, the clinic continues its proud legacy while modernizing systems, expanding services, and enhancing the family experience. Jonathan and his wife, Ashley, are honored to serve the SCPPT community and committed to upholding SCPPT’s reputation for warmth, integrity, and professional excellence.
Our Philosophy
We believe every child has incredible potential. Through individualized, play-based therapy and strong family partnerships, we help children build strength, confidence, and independence.
Our approach is collaborative, evidence-based, and family-driven:
We tailor therapy to each child’s unique abilities, challenges, and goals.
We include caregivers as active partners through education and communication.
We create an encouraging, child-friendly environment that fosters curiosity and success.
Our core values
Compassion – We treat every child and family with kindness, patience, and respect.
Excellence – We pursue clinical quality through continuous learning and collaboration.
Partnership – We work closely with families to create lasting progress and confidence.
Integrity – We uphold the highest standards of honesty and professionalism.
Why Families Choose South Coast Pediatric Physical Therapy
Choosing care for your child can feel overwhelming—but you don’t have to navigate it alone. At South Coast Pediatric Physical Therapy, you’ll find more than a clinic. You’ll find a team that sees your child’s potential, listens to your concerns, and walks beside your family every step of the way.
Families choose us because we combine decades of clinical expertise with genuine compassion. We know that real progress happens when therapy feels collaborative, consistent, and joyful.
If you’re ready to start your child’s therapy journey—or simply want to learn more—we’re here to help you take the next step with confidence.
Our Approach
We solved our design consistency challenges by implementing design tokens—a single source of truth for all our visual elements. I (1) created tokens with the Token Studio Plugin, (2) synced changes to Github, (3) converted tokens into code using Visual Studio Code, and lastly, (4) applied CSS variables to ensure easy updates without modifying code directly. This approach keeps styles consistent and reduces unnecessary developer work.
Process
We implemented design tokens and created a central repository of design decisions that both designers and developers could access.  This provided a more consistent user experience and significantly reduced handoff friction.
Creating Tokens
I used the existing color and type styles at Internet Brands to create design tokens using the Token Studio plugin. Below is an example of what the text style for ‘Body Text Small’ looks like using the plugin in Figma. It stored the font family, weight, and size among other information.
‘Body Text Default’ Characteristics in Token Studio
I organized our color and typography styles and put them in Token Studio and we had the beginning foundation for our Global tokens.
Token Studio - Color Tokens
Tokens.json file with ‘body text default’ style highlighted
Transforming tokens into CSS
In VS Code, I used a combination of the Token Transformer package, which converted tokens into raw values, and Style Dictionary, which transforms tokens into a usable format for developers—in our case, CSS variables. In the end, I got a nice set of CSS variables as shown below.
CSS Variables - Typography
CSS Variables - Color
Using CSS Variables in code
After the CSS variables were created, we were able to utilize them in code. This is an example of the values are adopted by the tokens.
Hex Value
#3da1ff
Global Token
--color-blue-400
Component Token
--button-default-background
The developer can use the ‘--button-default-background’ variable for the background-color attribute.
background-color: var(--button-default-background);
Let’s say our brand color changes and I want to change the button background color to Purple-400. I can assign the Component Token a different Global Token value. This allows me to keep the Component Token the same and now the token assignment looks like this.
Hex Value
#9767e5
Global Token
--color-purple-400
Component Token
--button-default-background
CONCLUSION
Design tokens transformed our workflow by creating a unified language between design and development teams.
Improvements
Our design tokens implementation delivered two critical improvements. We created a shared source of truth by storing all design styles in a central file. The Component Tokens system now allows designers to make widespread style changes without requiring constant developer intervention.
This shift required collaboration and a willingness to adapt, but it has streamlined our workflow and improved our design system. Below are some resources that helped me throughout this process and guided conversations with my team.