page.tsx 337 Bytes
import { Helmet } from '@modern-js/runtime/head';

const Index = () => (
  <>
    <Helmet>
      <link rel="icon" type="image/x-icon" href="https://lf3-static.bytednsdoc.com/obj/eden-cn/uhbfnupenuhf/favicon.ico" />
    </Helmet>
    <main className="p-4">
      <div>这是首页 页面</div>
    </main>
  </>
);

export default Index;