mirror of
https://github.com/zenlm/zen.git
synced 2026-07-26 22:28:05 +00:00
feat: add GitHub Pages workflow and update branding to Zen LM
- Add GitHub Actions workflow for automated Pages deployment - Change all branding from Zen AI to Zen LM - Remove Japanese character (禅) from site - Update meta tags and page titles - Ready for deployment to zenlm.org
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
name: Deploy to GitHub Pages
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["main"]
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
concurrency:
|
||||
group: "pages"
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Pages
|
||||
uses: actions/configure-pages@v5
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v3
|
||||
with:
|
||||
path: './docs'
|
||||
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v4
|
||||
@@ -102,5 +102,5 @@ document.head.appendChild(style);
|
||||
// Create particles periodically
|
||||
setInterval(createParticle, 500);
|
||||
|
||||
console.log('🌟 Zen AI - Next-Generation Language Models');
|
||||
console.log('🌟 Zen LM - Next-Generation Language Models');
|
||||
console.log('Built with clarity and purpose');
|
||||
|
||||
+8
-8
@@ -3,9 +3,9 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="Zen AI - Comprehensive family of next-generation language models built on Qwen3 architecture">
|
||||
<meta name="description" content="Zen LM - Comprehensive family of next-generation language models for research and production">
|
||||
<meta name="keywords" content="AI, LLM, Language Models, Qwen3, Machine Learning, Multimodal AI, Code Generation, Vision Models">
|
||||
<title>Zen AI - Next-Generation Language Models</title>
|
||||
<title>Zen LM - Next-Generation Language Models</title>
|
||||
<link rel="icon" type="image/png" href="favicon.png">
|
||||
<link rel="stylesheet" href="assets/css/style.css">
|
||||
</head>
|
||||
@@ -14,9 +14,9 @@
|
||||
<nav class="navbar">
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<img src="assets/logo.png" alt="Zen AI" class="logo-img">
|
||||
<img src="assets/logo.png" alt="Zen LM" class="logo-img">
|
||||
<div class="logo-text">
|
||||
<h1>禅 Zen AI</h1>
|
||||
<h1>Zen LM</h1>
|
||||
<p class="tagline">Clarity Through Intelligence</p>
|
||||
</div>
|
||||
</div>
|
||||
@@ -34,7 +34,7 @@
|
||||
<main>
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h2 class="hero-title">The Zen AI Ecosystem</h2>
|
||||
<h2 class="hero-title">The Zen LM Ecosystem</h2>
|
||||
<p class="hero-subtitle">Open-source multimodal foundation models for research and production</p>
|
||||
<p class="hero-description">
|
||||
A comprehensive family of AI models spanning language, vision, audio, video, 3D, and specialized tasks.
|
||||
@@ -1098,8 +1098,8 @@
|
||||
<div class="container">
|
||||
<div class="footer-content">
|
||||
<div class="footer-section">
|
||||
<h4>禅 Zen AI</h4>
|
||||
<p>Next-generation AI models built on Qwen3 architecture. From language to multimodal, nano to next-gen.</p>
|
||||
<h4>Zen LM</h4>
|
||||
<p>Next-generation language models for research and production. From language to multimodal, nano to next-gen.</p>
|
||||
</div>
|
||||
<div class="footer-section">
|
||||
<h4>Core Models</h4>
|
||||
@@ -1132,7 +1132,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<p>© 2025 Zen AI. All rights reserved. Built with clarity and purpose.</p>
|
||||
<p>© 2025 Zen LM. All rights reserved. Built with clarity and purpose.</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
Reference in New Issue
Block a user