import React from "react"; import { Button, Card, Col, Divider, Dropdown, Layout, Menu, Row, Space, Statistic, Table, Typography } from "antd"; import { DownOutlined } from "@ant-design/icons"; import logoWhite from "../assets/images/logo-white2.png"; import adsItemImage from "../assets/images/f89fdab0.webp"; import "../css/home.css"; const { Header, Content } = Layout; const { Title, Paragraph, Text } = Typography; const navItems = ["探索", "类目", "店铺", "达人", "商品", "视频与广告", "直播"]; const stats = [ { value: "3亿+", label: "商品数据" }, { value: "3.5亿+", label: "电商达人数据" }, { value: "5亿+", label: "直播与短视频数据" }, { value: "1000天", label: "历史数据" } ]; const logos = Array.from({ length: 20 }, (_, index) => ({ id: `logo-${index + 1}`, src: logoWhite, alt: `Partner ${index + 1}` })); const langItems = [ { key: "zh", label: "中文(简体)" }, { key: "en", label: "English(US)" } ]; const tableColumns = [ { title: "排名", dataIndex: "rank", key: "rank" }, { title: "商品", dataIndex: "product", key: "product", render: () => }, { title: "价格", dataIndex: "price", key: "price" }, { title: "销量", dataIndex: "sales", key: "sales" }, { title: "趋势", dataIndex: "trend", key: "trend", render: () => } ]; const tableData = [1, 2, 3].map((item) => ({ key: item, rank: `Top${item}`, price: "¥99.20", sales: "9276" })); export default function Home() { return ( ({ key: item, label: item }))} selectable={false} /> 中文(简体) Spark 深耕TikTok电商 全球用户优选 数据洞察平台 {stats.map((stat) => ( ))} 爆品挖掘、达人建联、视频创意、直播设计、广告优化、竞对分析 我们助您抓住TikTok的每一次机会! 7天免费试用 {[...logos, ...logos].map((logo, index) => ( ))} 01 爆品追踪 ); }