diff --git a/astro/src/components/ShadowBoxSection.astro b/astro/src/components/ShadowBoxSection.astro
index 399780c6..785c8343 100644
--- a/astro/src/components/ShadowBoxSection.astro
+++ b/astro/src/components/ShadowBoxSection.astro
@@ -2,7 +2,7 @@
interface Props {
id?: string;
theme?: string;
- style?: string;
+ styling?: string;
py?: number;
fluid?: boolean;
}
@@ -10,7 +10,7 @@ interface Props {
const {
id = undefined,
theme = "secondary",
- style = undefined,
+ styling = undefined,
py = 5,
fluid = true,
} = Astro.props;
@@ -18,7 +18,7 @@ const {
import { getBackgroundAndText } from "../lib/themes.ts";
const outerBgAndTextClass = getBackgroundAndText(theme, undefined);
-const innerBgClass = getBackgroundAndText(undefined, style);
+const innerBgClass = getBackgroundAndText(undefined, styling);
---
diff --git a/astro/src/components/ThemedBox.astro b/astro/src/components/ThemedBox.astro
index 1e10b188..55552393 100644
--- a/astro/src/components/ThemedBox.astro
+++ b/astro/src/components/ThemedBox.astro
@@ -1,7 +1,7 @@
---
export interface Props {
theme?: string;
- style?: string;
+ styling?: string;
text?: boolean;
border?: number;
class?: string;
@@ -10,7 +10,7 @@ export interface Props {
const {
theme = undefined,
- style = undefined,
+ styling = undefined,
text = true,
border = 0,
padding = 4,
@@ -19,8 +19,8 @@ const {
import { getBackgroundAndText, getBorder } from "../lib/themes.ts";
-const bgAndTextClasses = getBackgroundAndText(theme, style, text);
-const borderClasses = getBorder(border, theme, style === "subtle");
+const bgAndTextClasses = getBackgroundAndText(theme, styling, text);
+const borderClasses = getBorder(border, theme, styling === "subtle");
---
diff --git a/astro/src/components/ThemedColumn.astro b/astro/src/components/ThemedColumn.astro
index da7a3eef..b8648310 100644
--- a/astro/src/components/ThemedColumn.astro
+++ b/astro/src/components/ThemedColumn.astro
@@ -8,7 +8,7 @@ interface Props extends ColumnProps, ThemedBoxProps {}
const {
theme = undefined,
- style = undefined,
+ styling = undefined,
text = true,
border = 0,
padding = 4,
@@ -17,8 +17,8 @@ const {
import { getBackgroundAndText, getBorder } from "../lib/themes.ts";
-const bgAndTextClasses = getBackgroundAndText(theme, style, text);
-const borderClasses = getBorder(border, theme, style === "subtle");
+const bgAndTextClasses = getBackgroundAndText(theme, styling, text);
+const borderClasses = getBorder(border, theme, styling === "subtle");
---
\ No newline at end of file
diff --git a/astro/src/components/ThemedSection.astro b/astro/src/components/ThemedSection.astro
index 0cdc4ccf..34cb3878 100644
--- a/astro/src/components/ThemedSection.astro
+++ b/astro/src/components/ThemedSection.astro
@@ -2,7 +2,7 @@
interface Props {
id?: string;
theme?: string;
- style?: string;
+ styling?: string;
text?: boolean;
yPaddings?: Array
;
fluid?: boolean;
@@ -11,7 +11,7 @@ interface Props {
const {
id = undefined,
theme = undefined,
- style = undefined,
+ styling = undefined,
text = false,
yPaddings = ["xs-1", "sm-2", "md-3", "lg-4"],
fluid = false,
@@ -19,7 +19,7 @@ const {
import { getBackgroundAndText } from "../lib/themes.ts";
-const bgAndTextClass = getBackgroundAndText(theme, style, text);
+const bgAndTextClass = getBackgroundAndText(theme, styling, text);
const yPaddingClasses = yPaddings.map((p) => `py-${p}`);
---
diff --git a/astro/src/layouts/BlogLayout.astro b/astro/src/layouts/BlogLayout.astro
index 7d2f2ace..b1f2815f 100644
--- a/astro/src/layouts/BlogLayout.astro
+++ b/astro/src/layouts/BlogLayout.astro
@@ -87,7 +87,7 @@ import ThemedSection from "@components/ThemedSection.astro";
Blog
-
+
diff --git a/astro/src/layouts/PolicyLayout.astro b/astro/src/layouts/PolicyLayout.astro
index 4a13f379..5a7e378c 100644
--- a/astro/src/layouts/PolicyLayout.astro
+++ b/astro/src/layouts/PolicyLayout.astro
@@ -22,7 +22,7 @@ const metadata: PageMetadata = {
{title}
-
+
Print this page
diff --git a/astro/src/layouts/TipLayout.astro b/astro/src/layouts/TipLayout.astro
index bc4212d4..c436280e 100644
--- a/astro/src/layouts/TipLayout.astro
+++ b/astro/src/layouts/TipLayout.astro
@@ -85,7 +85,7 @@ const metadata: PageMetadata = {
-
+
@@ -133,7 +133,7 @@ const metadata: PageMetadata = {
-
+
diff --git a/astro/src/pages/_fixable/index.astro b/astro/src/pages/_fixable/index.astro
index 07aaaa0e..e16ccf1a 100644
--- a/astro/src/pages/_fixable/index.astro
+++ b/astro/src/pages/_fixable/index.astro
@@ -39,7 +39,7 @@ const crumbs = [];
-
+
Headings indicate structure .
-
+
Color needs contrast .
-
+
Forms require focus .
-
+
Links should be described and clickable .
-
+
Our motivation .
One in every three households includes someone who has a disability. These
@@ -153,7 +153,7 @@ import partnerImage from "../../images/np_Business-partners-discussing-work-arra
lg="3"
xl="3"
theme="info"
- style="subtle"
+ styling="subtle"
class="mx-4 my-auto rounded shadow-sm"
>
diff --git a/astro/src/pages/about/policies.astro b/astro/src/pages/about/policies.astro
index f5ff5a99..45aa6000 100644
--- a/astro/src/pages/about/policies.astro
+++ b/astro/src/pages/about/policies.astro
@@ -34,7 +34,7 @@ const crumbs: Breadcrumbs = [
and on Google Docs.
-
+
User Policies
These are policies for users of the tools that
diff --git a/astro/src/pages/about/story.astro b/astro/src/pages/about/story.astro
index 4b67690b..b99b4bc2 100644
--- a/astro/src/pages/about/story.astro
+++ b/astro/src/pages/about/story.astro
@@ -31,7 +31,7 @@ const crumbs: Breadcrumbs = [
Our Founder's Story
-
+
People with disabilities are the
Blogs by author
-
+
{
diff --git a/astro/src/pages/blog/dates/index.astro b/astro/src/pages/blog/dates/index.astro
index 055e9fda..51ac9850 100644
--- a/astro/src/pages/blog/dates/index.astro
+++ b/astro/src/pages/blog/dates/index.astro
@@ -24,7 +24,7 @@ import ThemedSection from "../../../components/ThemedSection.astro";
Blogs by date
-
+
{
diff --git a/astro/src/pages/blog/topics/index.astro b/astro/src/pages/blog/topics/index.astro
index 333b65af..5fc10f2f 100644
--- a/astro/src/pages/blog/topics/index.astro
+++ b/astro/src/pages/blog/topics/index.astro
@@ -24,7 +24,7 @@ import ThemedSection from "../../../components/ThemedSection.astro";
Blogs by topic
-
+
{
diff --git a/astro/src/pages/donate.astro b/astro/src/pages/donate.astro
index fafcb76c..b4b790b4 100644
--- a/astro/src/pages/donate.astro
+++ b/astro/src/pages/donate.astro
@@ -98,10 +98,10 @@ if (!letter) throw new Error("Could not find content `markdown/donor-letter`");
-
+
-
+
An anonymous donor is currently
matching contributions
up to $5,000.
Your donation will be doubled!
@@ -157,7 +157,7 @@ if (!letter) throw new Error("Could not find content `markdown/donor-letter`");
-
+
How can I help?
diff --git a/astro/src/pages/escape-room/_csun-2025.astro b/astro/src/pages/escape-room/_csun-2025.astro
index 6970c4ef..f1b85878 100644
--- a/astro/src/pages/escape-room/_csun-2025.astro
+++ b/astro/src/pages/escape-room/_csun-2025.astro
@@ -63,7 +63,7 @@ const timeSlots = ["7:20", "7:50", "8:20", "8:50", "9:20"];
-
+
CSUN Escape Room Registration
diff --git a/astro/src/pages/escape-room/how-it-works.astro b/astro/src/pages/escape-room/how-it-works.astro
index 92b77136..fd380d98 100644
--- a/astro/src/pages/escape-room/how-it-works.astro
+++ b/astro/src/pages/escape-room/how-it-works.astro
@@ -55,7 +55,7 @@ import heroBg from "src/images/escape-room/shaded/puzzle-display.jpg";
-
+
Quotes from our Customers
{
@@ -75,7 +75,7 @@ import heroBg from "src/images/escape-room/shaded/puzzle-display.jpg";
-
+
Frequently Asked Questions
What comes with an escape room kit?
diff --git a/astro/src/pages/escape-room/index.astro b/astro/src/pages/escape-room/index.astro
index 6285d90b..c63b260d 100644
--- a/astro/src/pages/escape-room/index.astro
+++ b/astro/src/pages/escape-room/index.astro
@@ -116,7 +116,7 @@ import woodenPuzzles from "src/images/escape-room/wooden-puzzles.png";
-
+
Our build-your-own rooms.
Requests for the Accessible Escape Room have gone beyond
diff --git a/astro/src/pages/escape-room/our-story.astro b/astro/src/pages/escape-room/our-story.astro
index f1944881..5b5963bc 100644
--- a/astro/src/pages/escape-room/our-story.astro
+++ b/astro/src/pages/escape-room/our-story.astro
@@ -68,7 +68,7 @@ import heroBg from "src/images/escape-room/shaded/puzzle-display.jpg";
-
+
diff --git a/astro/src/pages/escape-room/themes/[id].astro b/astro/src/pages/escape-room/themes/[id].astro
index e4329eba..f065a149 100644
--- a/astro/src/pages/escape-room/themes/[id].astro
+++ b/astro/src/pages/escape-room/themes/[id].astro
@@ -112,11 +112,11 @@ import ThemedSection from "@components/ThemedSection.astro";
-
+
-
+
This Escape Room Kit includes:
A List of Required Materials
diff --git a/astro/src/pages/escape-room/themes/index.astro b/astro/src/pages/escape-room/themes/index.astro
index ff6f095f..7ab0c3de 100644
--- a/astro/src/pages/escape-room/themes/index.astro
+++ b/astro/src/pages/escape-room/themes/index.astro
@@ -39,7 +39,7 @@ const rooms = sortBy(
-
+
Themes
-
+
Are you reaching everyone in your community?
@@ -140,7 +140,7 @@ import ShadowBoxSection from "@components/ShadowBoxSection.astro";
-
+
Request an accessibility evaluation.
-
+
Our Mission
Through globa11y , we empower low-income people with
@@ -65,7 +65,7 @@ import { Icon } from "astro-icon/components";
barriers and building a future where inclusion drives innovation.
-
+
Current Activities
globa11y is currently in its
-
+
Who We Are
globa11y , an initiative of
-
+
What we believe .
-
+
@@ -156,7 +156,7 @@ const metadata: PageMetadata = {
-
+
Our services .
-
+
Start your organization's disability-inclusion journey.
diff --git a/astro/src/pages/join-us/_sponsor.astro b/astro/src/pages/join-us/_sponsor.astro
index 811ad80a..17f374a8 100644
--- a/astro/src/pages/join-us/_sponsor.astro
+++ b/astro/src/pages/join-us/_sponsor.astro
@@ -21,7 +21,7 @@ const crumbs = [
---
-
+
Sponsor information coming soon.
diff --git a/astro/src/pages/join-us/commitment-form.astro b/astro/src/pages/join-us/commitment-form.astro
index b2c98294..7f89b6c7 100644
--- a/astro/src/pages/join-us/commitment-form.astro
+++ b/astro/src/pages/join-us/commitment-form.astro
@@ -36,7 +36,7 @@ const crumbs: Breadcrumbs = [
Volunteer Commitment Form
-
+
-
+
@@ -70,7 +70,7 @@ const metadata: PageMetadata = {
diff --git a/astro/src/pages/join-us/loca11y-interview.astro b/astro/src/pages/join-us/loca11y-interview.astro
index d59faeed..706e87e9 100644
--- a/astro/src/pages/join-us/loca11y-interview.astro
+++ b/astro/src/pages/join-us/loca11y-interview.astro
@@ -52,7 +52,7 @@ const crumbs: Breadcrumbs = [
-
+
Overview
Thank you for your assistance to help our local communities become more
@@ -80,7 +80,7 @@ const crumbs: Breadcrumbs = [
-
+
Interview Form
diff --git a/astro/src/pages/mutua11y/index.astro b/astro/src/pages/mutua11y/index.astro
index 52d1f803..a9dfa104 100644
--- a/astro/src/pages/mutua11y/index.astro
+++ b/astro/src/pages/mutua11y/index.astro
@@ -89,7 +89,7 @@ const contributors = await getCollection("collaborators", ({ data }) => {
-
+
@@ -108,7 +108,7 @@ const contributors = await getCollection("collaborators", ({ data }) => {
@@ -117,7 +117,7 @@ const contributors = await getCollection("collaborators", ({ data }) => {
-
+
@@ -142,7 +142,7 @@ const contributors = await getCollection("collaborators", ({ data }) => {
-
+
How can I be involved ?
About mutua11y mentoring
-
+
Overview
@@ -139,7 +139,7 @@ const partners = await getCollection("collaborators", ({ data }) =>
-
+
Who Can Be A Protégé ?
We are looking for individuals who have:
@@ -177,7 +177,7 @@ const partners = await getCollection("collaborators", ({ data }) =>
identity, sexual orientation, national origin, or disability status.
-
+
Partners
diff --git a/astro/src/pages/mutua11y/workshops.astro b/astro/src/pages/mutua11y/workshops.astro
index bdb362d3..a7378d5c 100644
--- a/astro/src/pages/mutua11y/workshops.astro
+++ b/astro/src/pages/mutua11y/workshops.astro
@@ -31,7 +31,7 @@ import ExternalLink from "@components/ExternalLink.astro";
Workshops
-
+
Overview
Accessible Community , in partnership
@@ -78,7 +78,7 @@ import ExternalLink from "@components/ExternalLink.astro";
-
+
Previous Workshops
Building the business case for accessibility
diff --git a/astro/src/pages/podcasts/index.astro b/astro/src/pages/podcasts/index.astro
index 78f161c1..af4ced02 100644
--- a/astro/src/pages/podcasts/index.astro
+++ b/astro/src/pages/podcasts/index.astro
@@ -66,13 +66,13 @@ import ThemedSection from "@components/ThemedSection.astro";
Podcast Series
-
+
Subscribe to the Accessible Community podcast.
-
+
Would you like to share your experiences?
Fill out this interest form .
@@ -82,7 +82,7 @@ import ThemedSection from "@components/ThemedSection.astro";
{
shows.map((show, index) => (
-
+
+
Credits and Thanks
Contributors
Thank you to all of our staff who help make these podcasts possible.
diff --git a/astro/src/pages/services/index.astro b/astro/src/pages/services/index.astro
index 07a6080e..a52df318 100644
--- a/astro/src/pages/services/index.astro
+++ b/astro/src/pages/services/index.astro
@@ -80,7 +80,7 @@ const metadata: PageMetadata = {
-
+
{
services.map(({ icon, name, title, text, link }) => (
@@ -219,7 +219,7 @@ const metadata: PageMetadata = {
-
+
About loca11y.org
@@ -253,7 +253,7 @@ const metadata: PageMetadata = {
accessibility, rather than quality of services.
-
+
About the globa11y pilot
diff --git a/astro/src/pages/team/[tag].astro b/astro/src/pages/team/[tag].astro
index ce864e85..4f03ec71 100644
--- a/astro/src/pages/team/[tag].astro
+++ b/astro/src/pages/team/[tag].astro
@@ -63,7 +63,7 @@ import ThemedSection from "../../components/ThemedSection.astro";
-
+
{
teamMembers.map((sm) => (
diff --git a/astro/src/pages/team/_alumni.astro b/astro/src/pages/team/_alumni.astro
index a52a3450..56f866e5 100644
--- a/astro/src/pages/team/_alumni.astro
+++ b/astro/src/pages/team/_alumni.astro
@@ -50,7 +50,7 @@ const crumbs = [
Our Alumni
-
+
The dedication and skill of our volunteer community makes
Accessible Community's
diff --git a/astro/src/pages/team/partners.astro b/astro/src/pages/team/partners.astro
index 1abf040a..0d570d7b 100644
--- a/astro/src/pages/team/partners.astro
+++ b/astro/src/pages/team/partners.astro
@@ -32,7 +32,7 @@ const partners = await getCollection("collaborators", ({ data }) =>
Partners
-
+
Thank you to the organizations that partner with us and support our work
in various ways.
diff --git a/astro/src/pages/team/previous.astro b/astro/src/pages/team/previous.astro
index cbdda870..12cabd46 100644
--- a/astro/src/pages/team/previous.astro
+++ b/astro/src/pages/team/previous.astro
@@ -102,7 +102,7 @@ import ThemedSection from "../../components/ThemedSection.astro";
Previous Contributors
-
+
We sincerely appreciate the time and energy that each person listed
diff --git a/astro/src/pages/team/staff.astro b/astro/src/pages/team/staff.astro
index 7823f0ab..54df9be4 100644
--- a/astro/src/pages/team/staff.astro
+++ b/astro/src/pages/team/staff.astro
@@ -68,7 +68,7 @@ const crumbs: Breadcrumbs = [
Our Staff
-
+
The dedication and skill of our volunteer community makes
Accessible Community's
diff --git a/astro/src/pages/tips/archive.astro b/astro/src/pages/tips/archive.astro
index 7ea0c683..76198130 100644
--- a/astro/src/pages/tips/archive.astro
+++ b/astro/src/pages/tips/archive.astro
@@ -71,7 +71,7 @@ const crumbs: Breadcrumbs = [
-
+
diff --git a/astro/src/pages/tips/index.astro b/astro/src/pages/tips/index.astro
index 7fc2e4a9..87037843 100644
--- a/astro/src/pages/tips/index.astro
+++ b/astro/src/pages/tips/index.astro
@@ -46,7 +46,7 @@ const crumbs: Breadcrumbs = [
Accessibility Tip of the Week
-
+
Making accessibility simpler .
*/}
-
+
diff --git a/astro/src/pages/volunteer.astro b/astro/src/pages/volunteer.astro
index 3c746eed..b40e1285 100644
--- a/astro/src/pages/volunteer.astro
+++ b/astro/src/pages/volunteer.astro
@@ -83,7 +83,7 @@ const orderedTeams = sortBy(teams, ["data.name"]);
-
+
@@ -139,7 +139,7 @@ const orderedTeams = sortBy(teams, ["data.name"]);
-
+
Volunteer Teams
@@ -182,7 +182,7 @@ const orderedTeams = sortBy(teams, ["data.name"]);
-
+
Volunteer Interest Form