add loading animation to the player and server page when clicking search
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m29s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m29s
This commit is contained in:
@ -1,3 +1,6 @@
|
||||
/**
|
||||
* Re-useable colors.
|
||||
*/
|
||||
export const Colors = {
|
||||
green: "#0FFF50",
|
||||
red: "#8B0000",
|
||||
|
@ -1,9 +1,20 @@
|
||||
import { Metadata } from "next";
|
||||
|
||||
type Embed = {
|
||||
/**
|
||||
* The title of the embed.
|
||||
*/
|
||||
title: string;
|
||||
|
||||
/**
|
||||
* The description of the embed.
|
||||
*/
|
||||
description: string;
|
||||
image?: string | null;
|
||||
|
||||
/**
|
||||
* The image to show as the thumbmail.
|
||||
*/
|
||||
image?: string;
|
||||
};
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user