Skip to content

Commit 0903b3b

Browse files
committed
2 parents 724a03d + c3d5ff6 commit 0903b3b

File tree

14 files changed

+1569
-34
lines changed

14 files changed

+1569
-34
lines changed

.github/workflows/deploy.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
# Job 1: Build with Vite
2727
build:
2828
name: Build with Vite
29-
needs: []
3029
runs-on: ubuntu-latest
3130
outputs:
3231
build_status: ${{ steps.build_check.outputs.status }}
@@ -166,6 +165,17 @@ jobs:
166165
--data '{"purge_everything":true}' | jq .
167166
echo "✅ Cache purge requested"
168167
168+
- name: Checkout code for IndexNow script
169+
uses: actions/checkout@v4
170+
with:
171+
sparse-checkout: scripts
172+
173+
- name: Submit URLs to IndexNow
174+
run: |
175+
echo "🔍 Submitting URLs to IndexNow..."
176+
node scripts/indexnow-submit.js
177+
continue-on-error: true
178+
169179
- name: Report deployment success
170180
run: |
171181
echo "🚀 DEPLOYMENT SUCCESSFUL"
@@ -174,4 +184,5 @@ jobs:
174184
echo "URL: ${{ steps.deployment.outputs.page_url }}"
175185
echo "Built with: Vite (optimized)"
176186
echo "Cache: Purged via Cloudflare API"
187+
echo "IndexNow: URLs submitted to search engines"
177188
echo "================================"

.well-known/security.txt

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Unity AI Lab Security Policy
2+
# https://www.unityailab.com/.well-known/security.txt
3+
#
4+
# If you have discovered a security vulnerability, we appreciate your help
5+
# in disclosing it to us in a responsible manner.
6+
7+
# Contact Information
8+
Contact: mailto:unityailabcontact@gmail.com
9+
Contact: https://github.com/Unity-Lab-AI/Unity-Lab-AI.github.io/security/advisories
10+
11+
# Encryption (Optional - add PGP key if available)
12+
# Encryption: https://www.unityailab.com/.well-known/pgp-key.txt
13+
14+
# Acknowledgments
15+
Acknowledgments: https://www.unityailab.com/security-thanks.html
16+
17+
# Policy
18+
Policy: https://www.unityailab.com/security-policy.html
19+
20+
# Preferred Languages
21+
Preferred-Languages: en
22+
23+
# Canonical URL
24+
Canonical: https://www.unityailab.com/.well-known/security.txt
25+
26+
# Expiration Date (update annually)
27+
Expires: 2026-12-31T23:59:59.000Z
28+
29+
# Hiring (if you have security positions)
30+
# Hiring: https://www.unityailab.com/careers/
31+
32+
# --- Additional Information ---
33+
#
34+
# Unity AI Lab specializes in AI security testing including:
35+
# - Red Team AI Security Assessments
36+
# - Blue Team AI Defense Strategies
37+
# - AI Jailbreak Research
38+
# - Prompt Injection Testing
39+
# - AI Model Security Audits
40+
#
41+
# We welcome responsible disclosure of vulnerabilities in:
42+
# - Our website (unityailab.com)
43+
# - Our AI applications and demos
44+
# - Our open source projects on GitHub
45+
#
46+
# Scope:
47+
# - In scope: *.unityailab.com, Unity-Lab-AI GitHub repositories
48+
# - Out of scope: Third-party services (Pollinations.AI, Discord, etc.)
49+
#
50+
# Thank you for helping keep Unity AI Lab secure!
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
a743d8b18b9b4efeb89378e9a803f956

ai/demo/index.html

Lines changed: 84 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,92 @@
1313
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
1414

1515
<!-- SEO Meta Tags -->
16-
<meta name="description" content="Unity AI Lab Demo - Interactive AI chat with advanced features">
17-
<meta name="keywords" content="Unity AI, AI Chat, Demo, Pollinations">
16+
<meta name="description" content="Try Unity AI - Free unrestricted AI chatbot demo. Chat with advanced AI, generate images, use voice features. Best ChatGPT alternative with no filters. Text generation, AI art, and conversational AI powered by Pollinations.">
17+
<meta name="keywords" content="Unity AI, AI chatbot, free AI, ChatGPT alternative, unrestricted AI, AI chat, text generation, AI image generator, text to image, AI art, voice AI, text to speech, conversational AI, AI assistant, virtual assistant, generative AI, LLM, AI demo, try AI, free AI chatbot, AI without limits, Pollinations AI, Unity AI Lab">
1818
<meta name="author" content="Unity AI Lab">
19-
<meta name="robots" content="noindex, nofollow">
19+
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
2020
<meta name="theme-color" content="#0a0a0a">
21-
22-
<title>Unity AI Lab - Demo</title>
21+
<link rel="canonical" href="https://www.unityailab.com/ai/demo/">
22+
23+
<!-- Open Graph Meta Tags -->
24+
<meta property="og:type" content="website">
25+
<meta property="og:url" content="https://www.unityailab.com/ai/demo/">
26+
<meta property="og:title" content="Unity AI Demo - Free Unrestricted AI Chatbot | ChatGPT Alternative">
27+
<meta property="og:description" content="Try Unity AI - Free unrestricted AI chatbot. Generate text, images, and use voice features. No registration required. Best ChatGPT alternative with no limits.">
28+
<meta property="og:site_name" content="Unity AI Lab">
29+
<meta property="og:locale" content="en_US">
30+
31+
<!-- Twitter Card Meta Tags -->
32+
<meta name="twitter:card" content="summary_large_image">
33+
<meta name="twitter:site" content="@UnityAILab">
34+
<meta name="twitter:title" content="Unity AI Demo - Free Unrestricted AI Chatbot">
35+
<meta name="twitter:description" content="Try Unity AI - Free unrestricted AI chatbot. Generate text, images, and voice. No registration. Best ChatGPT alternative.">
36+
37+
<title>Unity AI Demo - Free AI Chatbot | Text & Image Generation | ChatGPT Alternative</title>
38+
39+
<!-- JSON-LD Structured Data -->
40+
<script type="application/ld+json">
41+
{
42+
"@context": "https://schema.org",
43+
"@type": "WebApplication",
44+
"name": "Unity AI Chatbot Demo",
45+
"alternateName": ["Unity AI", "Unity AI Demo", "Free AI Chatbot"],
46+
"description": "Free unrestricted AI chatbot demo with text generation, image generation, and voice capabilities. ChatGPT alternative with no filters or limits. Powered by Pollinations.AI.",
47+
"url": "https://www.unityailab.com/ai/demo/",
48+
"applicationCategory": "AIApplication",
49+
"applicationSubCategory": ["Chatbot", "Text Generator", "Image Generator", "Voice AI"],
50+
"operatingSystem": "Web Browser",
51+
"browserRequirements": "Requires JavaScript",
52+
"offers": {
53+
"@type": "Offer",
54+
"price": "0",
55+
"priceCurrency": "USD",
56+
"availability": "https://schema.org/InStock"
57+
},
58+
"featureList": [
59+
"Unrestricted AI conversations",
60+
"Text generation",
61+
"AI image generation",
62+
"Text-to-speech voice output",
63+
"Multiple AI models",
64+
"No registration required",
65+
"Free to use",
66+
"Mobile responsive"
67+
],
68+
"author": {
69+
"@type": "Organization",
70+
"name": "Unity AI Lab",
71+
"url": "https://www.unityailab.com/"
72+
},
73+
"keywords": "AI chatbot, free AI, ChatGPT alternative, text generation, image generation, voice AI, unrestricted AI"
74+
}
75+
</script>
76+
<script type="application/ld+json">
77+
{
78+
"@context": "https://schema.org",
79+
"@type": "BreadcrumbList",
80+
"itemListElement": [
81+
{
82+
"@type": "ListItem",
83+
"position": 1,
84+
"name": "Home",
85+
"item": "https://www.unityailab.com/"
86+
},
87+
{
88+
"@type": "ListItem",
89+
"position": 2,
90+
"name": "AI",
91+
"item": "https://www.unityailab.com/ai/"
92+
},
93+
{
94+
"@type": "ListItem",
95+
"position": 3,
96+
"name": "Demo",
97+
"item": "https://www.unityailab.com/ai/demo/"
98+
}
99+
]
100+
}
101+
</script>
23102

24103
<!-- Preconnect -->
25104
<link rel="preconnect" href="https://fonts.googleapis.com">

apps/index.html

Lines changed: 127 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,39 +15,155 @@
1515

1616

1717
<!-- SEO and Social Meta Tags -->
18-
<meta name="description" content="About Unity AI Lab Team - Meet hackall360 (SpongeBong), GFourteen and the Unity AI Lab team. Learn about our unrestricted AI development, jailbreak research, and mission to push AI boundaries.">
19-
<meta name="keywords" content="Unity AI Team, Unity AI Lab Team, Unity Lab AI Team, about Unity AI, about UnityAILab, hackall360, hackall360 website, SpongeBong, SpongeBong website, GFourteen, GFourteen website, Unity AI founders, AI team, AI developers, AI lab, jailbreak research, prompt engineering team, AI innovation team, Unity AI history, Unity AI mission, unrestricted AI developers, gothic AI team, AI red team experts, AI blue team experts, Unity Discord team, AI integration team, Pollinations Unity team, Unity AI Lab about">
18+
<meta name="description" content="Free AI Apps by Unity AI Lab - AI chatbots, text generators, image generators, voice AI, and more. Try our collection of experimental AI-powered applications including Unity Chat, AI Slideshow, and AI Screensaver. No registration required.">
19+
<meta name="keywords" content="AI apps, free AI tools, AI chatbot, AI text generator, AI image generator, text to image, AI art generator, AI voice, text to speech, AI slideshow, AI screensaver, generative AI apps, Unity AI apps, AI applications, free AI demo, try AI online, ChatGPT alternative apps, AI persona, conversational AI apps, Unity AI Lab apps, Pollinations apps">
2020
<meta name="author" content="Unity AI Lab - hackall360, GFourteen, SpongeBong">
2121
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
2222
<meta name="theme-color" content="#0a0a0a">
23-
<link rel="canonical" href="https://www.unityailab.com/about/">
23+
<link rel="canonical" href="https://www.unityailab.com/apps/">
2424

2525
<!-- Mobile Web App Tags -->
2626
<meta name="mobile-web-app-capable" content="yes">
2727
<meta name="apple-mobile-web-app-capable" content="yes">
2828
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
29-
<meta name="apple-mobile-web-app-title" content="UnityAILab - About">
29+
<meta name="apple-mobile-web-app-title" content="UnityAILab Apps">
3030

3131
<!-- MS Tile Color -->
3232
<meta name="msapplication-TileColor" content="#0a0a0a">
3333
<meta name="msapplication-navbutton-color" content="#0a0a0a">
3434

3535
<!-- Open Graph Meta Tags for Social Sharing -->
3636
<meta property="og:type" content="website">
37-
<meta property="og:url" content="https://www.unityailab.com/about/">
38-
<meta property="og:title" content="About Unity AI Lab Team - hackall360, GFourteen, SpongeBong">
39-
<meta property="og:description" content="Meet the Unity AI Lab team - hackall360 (SpongeBong), GFourteen. Learn about our unrestricted AI development, jailbreak research, and mission to push AI boundaries.">
37+
<meta property="og:url" content="https://www.unityailab.com/apps/">
38+
<meta property="og:title" content="Free AI Apps - Chatbots, Image Generators, Voice AI | Unity AI Lab">
39+
<meta property="og:description" content="Explore free AI-powered applications: chatbots, text generators, image generators, voice AI, slideshows, and more. No registration required.">
4040
<meta property="og:site_name" content="Unity AI Lab">
4141
<meta property="og:locale" content="en_US">
4242

4343
<!-- Twitter Card Meta Tags -->
4444
<meta name="twitter:card" content="summary_large_image">
4545
<meta name="twitter:site" content="@UnityAILab">
4646
<meta name="twitter:creator" content="@UnityAILab">
47-
<meta name="twitter:title" content="About Unity AI Lab Team - hackall360, GFourteen, SpongeBong">
48-
<meta name="twitter:description" content="Meet the Unity AI Lab team - hackall360 (SpongeBong), GFourteen. Learn about our unrestricted AI development and mission.">
49-
50-
<title>About Unity AI Lab Team - hackall360, GFourteen, SpongeBong | Unity AI Lab</title>
47+
<meta name="twitter:title" content="Free AI Apps - Chatbots, Image Generators, Voice AI | Unity AI Lab">
48+
<meta name="twitter:description" content="Explore free AI-powered applications: chatbots, text generators, image generators, voice AI, and more.">
49+
50+
<title>Free AI Apps - Chatbots, Text & Image Generators, Voice AI | Unity AI Lab</title>
51+
52+
<!-- JSON-LD Structured Data -->
53+
<script type="application/ld+json">
54+
{
55+
"@context": "https://schema.org",
56+
"@type": "CollectionPage",
57+
"name": "Unity AI Lab Free AI Apps",
58+
"description": "Collection of free AI-powered applications including chatbots, text generators, image generators, voice AI tools, slideshows, and screensavers. No registration required.",
59+
"url": "https://www.unityailab.com/apps/",
60+
"mainEntity": {
61+
"@type": "ItemList",
62+
"name": "AI Applications",
63+
"numberOfItems": 8,
64+
"itemListElement": [
65+
{
66+
"@type": "SoftwareApplication",
67+
"position": 1,
68+
"name": "Unity Chat",
69+
"description": "Advanced AI chat interface with code panel, image generation, and multi-model support",
70+
"url": "https://www.unityailab.com/apps/unityDemo/unity.html",
71+
"applicationCategory": "AIApplication",
72+
"offers": {"@type": "Offer", "price": "0", "priceCurrency": "USD"}
73+
},
74+
{
75+
"@type": "SoftwareApplication",
76+
"position": 2,
77+
"name": "Text Chat",
78+
"description": "Simple text-based AI chat interface with custom prompt support",
79+
"url": "https://www.unityailab.com/apps/textDemo/text.html",
80+
"applicationCategory": "AIApplication",
81+
"offers": {"@type": "Offer", "price": "0", "priceCurrency": "USD"}
82+
},
83+
{
84+
"@type": "SoftwareApplication",
85+
"position": 3,
86+
"name": "Persona Chat",
87+
"description": "Experience different AI personalities and character modes",
88+
"url": "https://www.unityailab.com/apps/personaDemo/persona.html",
89+
"applicationCategory": "AIApplication",
90+
"offers": {"@type": "Offer", "price": "0", "priceCurrency": "USD"}
91+
},
92+
{
93+
"@type": "SoftwareApplication",
94+
"position": 4,
95+
"name": "Talking With Unity",
96+
"description": "Interactive voice AI conversation platform with Unity AI",
97+
"url": "https://www.unityailab.com/apps/talkingWithUnity/",
98+
"applicationCategory": "AIApplication",
99+
"offers": {"@type": "Offer", "price": "0", "priceCurrency": "USD"}
100+
},
101+
{
102+
"@type": "SoftwareApplication",
103+
"position": 5,
104+
"name": "Helper Interface",
105+
"description": "Comprehensive AI assistant interface with tools and utilities",
106+
"url": "https://www.unityailab.com/apps/helperInterfaceDemo/helperInterface.html",
107+
"applicationCategory": "AIApplication",
108+
"offers": {"@type": "Offer", "price": "0", "priceCurrency": "USD"}
109+
},
110+
{
111+
"@type": "SoftwareApplication",
112+
"position": 6,
113+
"name": "AI Slideshow",
114+
"description": "Dynamic AI-generated image slideshow with real-time generation",
115+
"url": "https://www.unityailab.com/apps/slideshowDemo/slideshow.html",
116+
"applicationCategory": "AIApplication",
117+
"offers": {"@type": "Offer", "price": "0", "priceCurrency": "USD"}
118+
},
119+
{
120+
"@type": "SoftwareApplication",
121+
"position": 7,
122+
"name": "AI Screensaver",
123+
"description": "AI-powered screensaver with customizable prompts and transitions",
124+
"url": "https://www.unityailab.com/apps/screensaverDemo/screensaver.html",
125+
"applicationCategory": "AIApplication",
126+
"offers": {"@type": "Offer", "price": "0", "priceCurrency": "USD"}
127+
},
128+
{
129+
"@type": "SoftwareApplication",
130+
"position": 8,
131+
"name": "Classic Unity",
132+
"description": "Previous version of Unity AI Lab interface with full features",
133+
"url": "https://www.unityailab.com/apps/oldSiteProject/",
134+
"applicationCategory": "AIApplication",
135+
"offers": {"@type": "Offer", "price": "0", "priceCurrency": "USD"}
136+
}
137+
]
138+
},
139+
"publisher": {
140+
"@type": "Organization",
141+
"name": "Unity AI Lab",
142+
"url": "https://www.unityailab.com/"
143+
},
144+
"keywords": "AI apps, free AI tools, AI chatbot, text generator, image generator, voice AI, generative AI"
145+
}
146+
</script>
147+
<script type="application/ld+json">
148+
{
149+
"@context": "https://schema.org",
150+
"@type": "BreadcrumbList",
151+
"itemListElement": [
152+
{
153+
"@type": "ListItem",
154+
"position": 1,
155+
"name": "Home",
156+
"item": "https://www.unityailab.com/"
157+
},
158+
{
159+
"@type": "ListItem",
160+
"position": 2,
161+
"name": "Apps",
162+
"item": "https://www.unityailab.com/apps/"
163+
}
164+
]
165+
}
166+
</script>
51167

52168
<!-- Preconnect to external resources for better performance -->
53169
<link rel="preconnect" href="https://fonts.googleapis.com">

copy-assets.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ const EXCLUDE = [
3535
'copy-assets.js',
3636
'cache-bust.js',
3737
'generate-sitemap.js',
38+
39+
// Scripts folder (build/dev tools, not needed in production)
40+
'scripts',
3841
'.gitignore',
3942
'.gitattributes',
4043
'.eslintrc.js',

0 commit comments

Comments
 (0)