空间分享页面在内嵌浏览器增加遮挡;删除冗余引入
This commit is contained in:
parent
ec84080a3b
commit
4c2b7c5757
|
@ -1,6 +1,5 @@
|
|||
"use client";
|
||||
|
||||
import Link from "next/link";
|
||||
import React, { useState, useEffect } from "react";
|
||||
import InOtherApp from "@/components/InOtherApp";
|
||||
import Image from "next/image";
|
||||
|
|
|
@ -12,6 +12,7 @@ import { generateSignature } from "@/utils/crypto";
|
|||
import copy from "@/utils/copy";
|
||||
import { setCookie } from "cookies-next";
|
||||
import Link from "next/link";
|
||||
import InOtherApp from "@/components/InOtherApp";
|
||||
|
||||
export default function Zone({ params }) {
|
||||
//页面数据
|
||||
|
@ -60,6 +61,7 @@ export default function Zone({ params }) {
|
|||
|
||||
return (
|
||||
<section className="flex flex-col flex-1 container">
|
||||
<InOtherApp />
|
||||
<div className="flex absolute top-0 left-0 w-full h-64 overflow-hidden">
|
||||
<img
|
||||
src={data?.streamer_ext?.cover?.images[0]?.urls[0]}
|
||||
|
|
Loading…
Reference in New Issue