Files
gitlab-instance-0a899031_no…/app/cloudphone/layout.tsx
2026-03-10 11:48:50 -05:00

21 lines
487 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import type { Metadata } from "next";
import { ChatFloatButton } from "./components/ChatFloatButton";
export const metadata: Metadata = {
title: "云手机 | 低成本工作室搭建指南",
description: "云手机实战课用开源硬件打造云手机TikTok无人直播、Youtube运营自动化。",
};
export default function CloudphoneLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
{children}
<ChatFloatButton />
</>
);
}