Skip to content

Commit 377f11b

Browse files
committed
Enhance content structure and SEO for LLM retrievability
- Fix inconsistent heading levels across all pages for better hierarchy - Improve meta descriptions with action words for better SEO - Add comprehensive Article schema to Tier 1 pages: * AI Risk Assessment Checklist * Voluntary AI Safety Standard (10 Guardrails) * AI Grants & Funding Australia * Policy Template Library - Add WebSite schema to home page with search functionality - Add Organization schema to About page with service catalog - Enhance LLM retrievability with structured data and clear content hierarchy All changes improve search engine optimization and AI content discovery.
1 parent 669dfd0 commit 377f11b

7 files changed

Lines changed: 438 additions & 39 deletions

File tree

docs/about.md

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,79 @@ This choice reflects our commitment to:
6969
> Content from SafeAI-Aus, licensed under CC BY 4.0. Adapted from the original at [https://github.com/safeai-aus/safeai-aus.github.io](https://github.com/safeai-aus/safeai-aus.github.io).
7070
7171
---
72+
73+
<!-- JSON-LD: Organization schema for crawlers and LLMs -->
74+
<script type="application/ld+json">
75+
{
76+
"@context": "https://schema.org",
77+
"@type": "Organization",
78+
"name": "SafeAI-Aus",
79+
"alternateName": "SafeAI Australia",
80+
"url": "https://safeaiaus.org",
81+
"logo": {
82+
"@type": "ImageObject",
83+
"url": "https://safeaiaus.org/assets/safeaiaus-logo-600px.png"
84+
},
85+
"description": "Open-source Australian knowledge hub for safe, responsible, and growth-focused AI adoption in business. We provide practical tools, open standards, and trusted guidance for responsible AI adoption.",
86+
"foundingDate": "2025",
87+
"areaServed": {
88+
"@type": "Country",
89+
"name": "Australia"
90+
},
91+
"knowsAbout": [
92+
"AI Safety",
93+
"AI Governance",
94+
"AI Risk Assessment",
95+
"AI Compliance",
96+
"Australian AI Standards",
97+
"AI Policy Templates",
98+
"AI Safety Guardrails",
99+
"AI Ethics",
100+
"Responsible AI"
101+
],
102+
"sameAs": [
103+
"https://github.com/safeai-aus/safeai-aus.github.io",
104+
"https://twitter.com/safeai_aus",
105+
"https://www.linkedin.com/company/safeai-aus"
106+
],
107+
"contactPoint": {
108+
"@type": "ContactPoint",
109+
"email": "contact@safeai-aus.org",
110+
"contactType": "General Inquiry"
111+
},
112+
"hasOfferCatalog": {
113+
"@type": "OfferCatalog",
114+
"name": "AI Safety Resources",
115+
"itemListElement": [
116+
{
117+
"@type": "Offer",
118+
"itemOffered": {
119+
"@type": "Service",
120+
"name": "AI Risk Assessment Checklist",
121+
"description": "Free downloadable checklist for AI risk assessment"
122+
}
123+
},
124+
{
125+
"@type": "Offer",
126+
"itemOffered": {
127+
"@type": "Service",
128+
"name": "AI Governance Templates",
129+
"description": "Free downloadable AI policy and governance templates"
130+
}
131+
},
132+
{
133+
"@type": "Offer",
134+
"itemOffered": {
135+
"@type": "Service",
136+
"name": "AI Safety Standards Guide",
137+
"description": "Comprehensive guide to Australian AI safety standards"
138+
}
139+
}
140+
]
141+
},
142+
"license": "https://creativecommons.org/licenses/by/4.0/",
143+
"inLanguage": "en-AU"
144+
}
145+
</script>
146+
147+
---

docs/business-resources/ai-grants-funding-australia.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,3 +203,60 @@ For Australian businesses, the AI funding landscape is broad and diverse. SMEs c
203203
Larger ventures and scale‑ups may find opportunities in NRFC co‑investment or ARC research partnerships. Niche initiatives, such as the Fearless Innovator Grant, highlight inclusivity and grassroots innovation.
204204

205205
With both government and industry partners investing in AI capability, now is the time for Australian businesses to explore these programs, align with responsible AI practices, and position themselves for future growth.
206+
207+
---
208+
209+
<!-- JSON-LD: Article schema for crawlers and LLMs -->
210+
<script type="application/ld+json">
211+
{
212+
"@context": "https://schema.org",
213+
"@type": "Article",
214+
"headline": "AI Grants and Funding Opportunities for Australian Businesses",
215+
"description": "Discover 11+ free AI learning resources for Australian SMEs. Access government programs, university courses, and open-source training to build AI capability and stay competitive.",
216+
"author": {
217+
"@type": "Organization",
218+
"name": "SafeAI-Aus",
219+
"url": "https://safeaiaus.org"
220+
},
221+
"publisher": {
222+
"@type": "Organization",
223+
"name": "SafeAI-Aus",
224+
"url": "https://safeaiaus.org",
225+
"logo": {
226+
"@type": "ImageObject",
227+
"url": "https://safeaiaus.org/assets/safeaiaus-logo-600px.png"
228+
}
229+
},
230+
"datePublished": "2025-01-27",
231+
"dateModified": "2025-01-27",
232+
"inLanguage": "en-AU",
233+
"url": "https://safeaiaus.org/business-resources/ai-grants-funding-australia/",
234+
"mainEntityOfPage": "https://safeaiaus.org/business-resources/ai-grants-funding-australia/",
235+
"license": "https://creativecommons.org/licenses/by/4.0/",
236+
"isPartOf": {
237+
"@type": "WebSite",
238+
"name": "SafeAI-Aus",
239+
"url": "https://safeaiaus.org"
240+
},
241+
"about": [
242+
{
243+
"@type": "Thing",
244+
"name": "AI Funding",
245+
"description": "Financial support programs for AI adoption in Australian businesses"
246+
},
247+
{
248+
"@type": "Thing",
249+
"name": "AI Grants Australia",
250+
"description": "Government and industry grants for AI projects and development"
251+
},
252+
{
253+
"@type": "Thing",
254+
"name": "AI Business Support",
255+
"description": "Resources and programs supporting AI implementation in Australian businesses"
256+
}
257+
],
258+
"keywords": "AI grants Australia, AI funding Australia, AI business grants, Australian AI funding, AI government grants, AI business support, AI investment Australia, AI startup funding",
259+
"articleSection": "Business Resources",
260+
"wordCount": "2500"
261+
}
262+
</script>

docs/business-resources/ai-learning-development-directory.md

Lines changed: 33 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
22
layout: page
33
title: "AI & Emerging Tech Learning Directory for SMEs"
4-
description: "Directory of government-backed and open-source learning resources to help Australian SMEs build AI and emerging technology capability."
4+
description: "Discover 11+ free AI learning resources for Australian SMEs. Access government programs, university courses, and open-source training to build AI capability and stay competitive."
55
keywords: "AI learning, SME training, AI resources Australia, safe AI adoption, government AI courses, open source AI learning"
66
author: "SafeAI-Aus"
77
robots: "index, follow"
88
og_title: "AI & Emerging Tech Learning Directory for SMEs"
9-
og_description: "Comprehensive directory of AI and emerging tech learning resources for Australian SMEs, from government programs to open-source Creative Commons courses."
9+
og_description: "Discover 11+ free AI learning resources for Australian SMEs. Access government programs, university courses, and open-source training to build AI capability."
1010
og_type: "article"
1111
og_url: "https://safeai-aus.github.io/business-resources/ai-learning-development-directory/"
1212
og_image: "assets/safeaiaus-logo-600px.png"
1313
twitter_card: "summary_large_image"
1414
twitter_title: "AI & Emerging Tech Learning Directory for SMEs"
15-
twitter_description: "Comprehensive directory of AI and emerging tech learning resources for Australian SMEs, from government programs to open-source Creative Commons courses."
15+
twitter_description: "Discover 11+ free AI learning resources for Australian SMEs. Access government programs, university courses, and open-source training to build AI capability."
1616
canonical_url: "https://safeai-aus.github.io/business-resources/ai-learning-development-directory/"
1717
---
1818

@@ -26,9 +26,11 @@ Each resource includes details on **format, eligibility, cost, and difficulty le
2626

2727
---
2828

29-
## Section 1: Government-Backed Programs
29+
## Government-Backed Programs
3030

31-
### 1. [AI 101 Course for Small & Medium Businesses](https://www.minister.industry.gov.au/ministers/husic/media-releases/free-ai-education-small-and-medium-businesses)
31+
### Federal Programs
32+
33+
#### 1. [AI 101 Course for Small & Medium Businesses](https://www.minister.industry.gov.au/ministers/husic/media-releases/free-ai-education-small-and-medium-businesses)
3234
*Department of Industry, Science and Resources (DISR)*
3335

3436
- **Description:** Builds foundational understanding of AI concepts and real-world productivity use cases tailored for SMEs.
@@ -40,7 +42,7 @@ Each resource includes details on **format, eligibility, cost, and difficulty le
4042

4143
---
4244

43-
### 2. [AI Adopt Centres](https://business.gov.au/expertise-and-advice/ai-adopt-centres)
45+
#### 2. [AI Adopt Centres](https://business.gov.au/expertise-and-advice/ai-adopt-centres)
4446
*Business.gov.au – National Network*
4547

4648
- **Description:** Provides tailored diagnostics, hands-on piloting, and AI adoption roadmapping through expert guidance.
@@ -52,7 +54,7 @@ Each resource includes details on **format, eligibility, cost, and difficulty le
5254

5355
---
5456

55-
### 3. [Digital Transformation – Manufacturing AI Support](https://www.minister.industry.gov.au/ministers/husic/media-releases/free-ai-training-and-advice-small-medium-businesses)
57+
#### 3. [Digital Transformation – Manufacturing AI Support](https://www.minister.industry.gov.au/ministers/husic/media-releases/free-ai-training-and-advice-small-medium-businesses)
5658
*Advanced Robotics Manufacturing Hub & partners*
5759

5860
- **Description:** Sector-focused advisory addressing AI-driven workflow optimization, robotics integration, and governance for manufacturing, energy, or agri SMEs.
@@ -64,7 +66,7 @@ Each resource includes details on **format, eligibility, cost, and difficulty le
6466

6567
---
6668

67-
### 4. [IATD Fee-Free Courses (Microcredentials)](https://statedevelopment.sa.gov.au/news/free-ai-education-for-smes)
69+
#### 4. [IATD Fee-Free Courses (Microcredentials)](https://statedevelopment.sa.gov.au/news/free-ai-education-for-smes)
6870
*SA Government + TAFE NSW, Microsoft, UTS, Macquarie University*
6971

7072
- **Description:** Stackable microcredentials in AI, cybersecurity, data, software, and cloud—designed with industry partners for practical skill-building.
@@ -76,7 +78,7 @@ Each resource includes details on **format, eligibility, cost, and difficulty le
7678

7779
---
7880

79-
### 5. [TAFE NSW + National AI Centre Introduction to AI Microskill](https://www.nsw.gov.au/media-releases/one-million-introduction-to-ai-scholarships-available-to-australians)
81+
#### 5. [TAFE NSW + National AI Centre "Introduction to AI" Microskill](https://www.nsw.gov.au/media-releases/one-million-introduction-to-ai-scholarships-available-to-australians)
8082

8183
- **Description:** A concise, non-technical introduction to AI, covering basics, benefits, limitations, and ethical considerations.
8284
- **Format:** 2–3 hour online module.
@@ -87,7 +89,7 @@ Each resource includes details on **format, eligibility, cost, and difficulty le
8789

8890
---
8991

90-
### 6. [APS Academy – AI in Government Fundamentals](https://www.apsacademy.gov.au/course-sessions/ai-government-fundamentals)
92+
#### 6. [APS Academy – "AI in Government Fundamentals"](https://www.apsacademy.gov.au/course-sessions/ai-government-fundamentals)
9193

9294
- **Description:** Covers ethical, governance, and risk aspects of AI deployment in brief, accessible form.
9395
- **Format:** 20–30 minute self-paced module.
@@ -98,9 +100,23 @@ Each resource includes details on **format, eligibility, cost, and difficulty le
98100

99101
---
100102

101-
## Section 2: Open-Source / Creative Commons Programs
103+
### State-Level Programs
104+
105+
#### 7. [South Australia AI Initiative](https://www.news.com.au/technology/innovation/south-australian-treasurer-stephen-mullighan-announces-new-28m-ai-program-in-state-budget/news-story/97fe39eeff3224d0eb3857c7169ce8c2)
106+
*SA Government*
107+
108+
- **Description:** $28 million AI initiative (2025-2029) with $7 million annually for proof-of-value trials
109+
- **Format:** Government-funded programs and trials
110+
- **Eligibility:** Healthcare, policing, allied health, social work, and legal/financial services
111+
- **Cost:** **Free** (government-funded)
112+
- **Difficulty:** Intermediate–Advanced
113+
- **Integration:** Ideal for public sector AI adoption and job protection initiatives
114+
115+
---
116+
117+
## Open-Source / Creative Commons Programs
102118

103-
### 7. [MIT OpenCourseWare – AI & ML Courses](https://ocw.mit.edu)
119+
#### 8. [MIT OpenCourseWare – AI & ML Courses](https://ocw.mit.edu)
104120
*MIT*
105121

106122
- **Description:** Deep-dive curriculum including lectures, notes, and problem sets on foundational AI and ML techniques.
@@ -112,9 +128,9 @@ Each resource includes details on **format, eligibility, cost, and difficulty le
112128

113129
---
114130

115-
### 8. [AI Pedagogy Project](https://aipedagogy.org/using-our-content/)
131+
#### 9. [AI Pedagogy Project](https://aipedagogy.org/using-our-content/)
116132

117-
- **Description:** Curated assignments and tutorials promoting critical thinking about AIs ethics, limitations, and societal impact.
133+
- **Description:** Curated assignments and tutorials promoting critical thinking about AI's ethics, limitations, and societal impact.
118134
- **Format:** Adaptable classroom exercises, prompts, and tutorials.
119135
- **License:** CC BY-NC-SA 4.0.
120136
- **Cost:** **Free**.
@@ -124,9 +140,9 @@ Each resource includes details on **format, eligibility, cost, and difficulty le
124140

125141
---
126142

127-
### 9. [MIT How to AI (Almost) Anything](https://ocw.mit.edu/courses/mas-s60-how-to-ai-almost-anything-spring-2025/)
143+
#### 10. [MIT "How to AI (Almost) Anything"](https://ocw.mit.edu/courses/mas-s60-how-to-ai-almost-anything-spring-2025/)
128144

129-
- **Description:** Explores multimodal AI applications across vision, sound, sensors, and creativity—building intuition for AIs broader capabilities.
145+
- **Description:** Explores multimodal AI applications across vision, sound, sensors, and creativity—building intuition for AI's broader capabilities.
130146
- **Format:** Lectures, readings, and research projects.
131147
- **License:** CC BY.
132148
- **Cost:** **Free**.
@@ -136,7 +152,7 @@ Each resource includes details on **format, eligibility, cost, and difficulty le
136152

137153
---
138154

139-
### 10. [Dive into Deep Learning](https://d2l.ai/)
155+
#### 11. [Dive into Deep Learning](https://d2l.ai/)
140156

141157
- **Description:** Hands-on, open-source textbook with runnable code, blending theory, math, and implementation in Jupyter notebooks.
142158
- **Format:** Interactive book using PyTorch, TensorFlow, JAX, with live examples.

0 commit comments

Comments
 (0)