Initial MARD pixel bead pattern web

This commit is contained in:
wuyanwanwu
2026-08-13 23:00:44 +08:00
commit e3fe03468d
32 changed files with 11811 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "豆格工坊|图片转拼豆图纸",
description: "在浏览器中把图片转换为拼豆像素图纸,按色号、名称或像素格筛选颜色。",
};
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
return <html lang="zh-CN"><body>{children}</body></html>;
}