mirror of
https://github.com/hpcaitech/Open-Sora.git
synced 2026-04-16 04:54:29 +02:00
17 lines
313 B
JavaScript
17 lines
313 B
JavaScript
import { FiYoutube, FiGithub } from "react-icons/fi";
|
|
|
|
const links = [
|
|
{
|
|
name: "Gallery",
|
|
iconType: FiYoutube,
|
|
link: "https://hpcaitech.github.io/Open-Sora/",
|
|
},
|
|
{
|
|
name: "Repository",
|
|
iconType: FiGithub,
|
|
link: "https://github.com/hpcaitech/Open-Sora",
|
|
},
|
|
];
|
|
|
|
export default links;
|