import Link from 'next/link'; import { ArrowUpRight, BookOpen, Rocket } from 'lucide-react'; import { appName, gitConfig } from '@/lib/shared'; const githubUrl = `https://github.com/${gitConfig.user}/${gitConfig.repo}`; const demoUrl = 'https://infinite-canvas-cpco.onrender.com/'; const starHistoryUrl = `https://www.star-history.com/?repos=${gitConfig.user}%2F${gitConfig.repo}&type=date`; const starHistoryChart = `https://api.star-history.com/chart?repos=${gitConfig.user}/${gitConfig.repo}&type=date&transparent=true`; const darkStarHistoryChart = `${starHistoryChart}&theme=dark`; const previewImages = [ { src: 'https://i.ibb.co/TDFvGWDT/image.png', title: '画布编排', }, { src: 'https://i.ibb.co/zVwJq3YS/image.png', title: '图片生成', }, { src: 'https://i.ibb.co/PvY3qhhK/image.png', title: '参考图编辑', }, { src: 'https://i.ibb.co/7D04LwN/image.png', title: '节点工作流', }, ]; export default function HomePage() { return (
开源 AI 图片创作工作台

{appName} 文档中心

面向图片创作的无限画布,把画布编排、AI 生成、参考图编辑、提示词库和素材沉淀放在同一个工作流里。

快速开始 GitHub 在线体验
无限画布效果图

效果展示

功能介绍
{previewImages.map((item) => ( {`${item.title}效果图`} ))}

开发贡献者

感谢所有为本项目做出贡献的开发者

开发贡献者头像

Star History

Star History Chart
); }