import { Avatar, Box, Button, Card, colors, Container, Grid, List, ListItemAvatar, ListItemButton, ListItemText, Typography, } from "@mui/material"; import { RELATED_ACCOUNTS } from "@/app/consts"; import Image from "next/image"; import Link from "next/link"; export default function Home() { return ( 你好呀 👋 欢迎来到 SmartSheep Studio 的官方网站!在这里了解,订阅,跟踪我们的最新消息。 接触我们最大的官方社区,并且尝试最新产品,参与各种活动,提供反馈,让我们更好的服务您。 Logo {RELATED_ACCOUNTS.map((item, idx) => ( {item.icon} ))} 关于我们 我们是一群充满活力、对开源充满热情的开发者。成立于 2019 年。自那年起我们一直在开发让人喜欢的开源软件。 在我们这里,“取之于开源,用之于开源” 不仅是原则,更是我们信仰的座右铭。 ); }