空间分享页面在内嵌浏览器增加遮挡;删除冗余引入

This commit is contained in:
yezian 2024-04-28 18:09:01 +08:00
parent ec84080a3b
commit 4c2b7c5757
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,5 @@
"use client"; "use client";
import Link from "next/link";
import React, { useState, useEffect } from "react"; import React, { useState, useEffect } from "react";
import InOtherApp from "@/components/InOtherApp"; import InOtherApp from "@/components/InOtherApp";
import Image from "next/image"; import Image from "next/image";

View File

@ -12,6 +12,7 @@ import { generateSignature } from "@/utils/crypto";
import copy from "@/utils/copy"; import copy from "@/utils/copy";
import { setCookie } from "cookies-next"; import { setCookie } from "cookies-next";
import Link from "next/link"; import Link from "next/link";
import InOtherApp from "@/components/InOtherApp";
export default function Zone({ params }) { export default function Zone({ params }) {
// //
@ -60,6 +61,7 @@ export default function Zone({ params }) {
return ( return (
<section className="flex flex-col flex-1 container"> <section className="flex flex-col flex-1 container">
<InOtherApp />
<div className="flex absolute top-0 left-0 w-full h-64 overflow-hidden"> <div className="flex absolute top-0 left-0 w-full h-64 overflow-hidden">
<img <img
src={data?.streamer_ext?.cover?.images[0]?.urls[0]} src={data?.streamer_ext?.cover?.images[0]?.urls[0]}