"use client"; import React, { useState, useEffect } from "react"; import InOtherApp from "@/components/InOtherApp"; import Image from "next/image"; import download_lefttop from "@/public/images/download_lefttop.png"; import download_righttop from "@/public/images/download_righttop.png"; import download_rightmedium from "@/public/images/download_rightmedium.png"; import download_leftbottom from "@/public/images/download_leftbottom.png"; import download_rightbottom from "@/public/images/download_rightbottom.png"; import slogan from "@/public/images/slogan.png"; import qrcode from "@/public/images/qrcode.png"; import Footer from "@/components/Footer"; import Link from "next/link"; export default function Home() { const [deviceType, setDeviceType] = useState(""); useEffect(() => { const userAgent = navigator.userAgent; //区分设备类型 if (/Android/i.test(userAgent)) { setDeviceType("Android"); } else if (/iPhone|iPad|iPod/i.test(userAgent)) { setDeviceType("ios"); } else { setDeviceType("pc"); } }, []); return (

多塔传媒
网红达人助力产品营销,定制广告方案

推荐KOL

震震昊看世界

白仔游世界🌸

Quyen

Kasia

); }