add a title component
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m4s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m4s
This commit is contained in:
@ -7,6 +7,7 @@ import { Metadata, Viewport } from "next";
|
||||
import Link from "next/link";
|
||||
import { ReactElement } from "react";
|
||||
import { Colors } from "@/common/colors";
|
||||
import { Title } from "@/app/components/title";
|
||||
|
||||
/**
|
||||
* Force the page to be dynamic, so it will be regenerated on every request
|
||||
@ -80,8 +81,7 @@ export default async function Page(): Promise<ReactElement> {
|
||||
return (
|
||||
<div>
|
||||
<div className="text-center mb-4">
|
||||
<h1 className="text-xl">Mojang Status</h1>
|
||||
<p>The current status of Mojang Services</p>
|
||||
<Title title="Mojang Status" subtitle="The current status of Mojang Services" />
|
||||
</div>
|
||||
<Card
|
||||
classNameCard="py-0 pb-2 w-screen xs:w-[28rem] md:w-[35rem]"
|
||||
|
@ -4,6 +4,7 @@ import { ReactElement } from "react";
|
||||
import { Button } from "../components/ui/button";
|
||||
import { Separator } from "../components/ui/separator";
|
||||
import { Tooltip, TooltipContent, TooltipTrigger } from "../components/ui/tooltip";
|
||||
import { Title } from "@/app/components/title";
|
||||
|
||||
type Button = {
|
||||
/**
|
||||
@ -51,16 +52,18 @@ const buttons: Button[] = [
|
||||
export default function Home(): ReactElement {
|
||||
return (
|
||||
<div className="text-center flex flex-col gap-4">
|
||||
<div className="p-4">
|
||||
<div>
|
||||
<h1 className="text-4xl mb-2">Minecraft Utilities</h1>
|
||||
<div>
|
||||
<p>
|
||||
Minecraft Utilities offers you many endpoints to get information about a minecraft server or a player.
|
||||
</p>
|
||||
<p>We offer you a simple and easy to use API.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="p-2">
|
||||
<Title
|
||||
title="Minecraft Utilities"
|
||||
subtitle={
|
||||
<>
|
||||
<p>
|
||||
Minecraft Utilities offers you many endpoints to get information about a minecraft server or a player.
|
||||
</p>
|
||||
<p>We offer you a simple and easy to use API.</p>
|
||||
</>
|
||||
}
|
||||
/>
|
||||
|
||||
<div className="flex flex-row gap-2 justify-center mt-4 flex-wrap">
|
||||
{buttons.map((button, index) => {
|
||||
@ -84,7 +87,7 @@ export default function Home(): ReactElement {
|
||||
|
||||
<Separator />
|
||||
|
||||
<div className="flex flex-col gap-4 items-center pt-4">
|
||||
<div className="flex flex-col gap-4 items-center p-2">
|
||||
<div className="text-center">
|
||||
<p className="font-semibold text-xl">API Statistics</p>
|
||||
<p>View the statistics for the API in real-time!</p>
|
||||
|
@ -11,6 +11,7 @@ import config from "@root/config.json";
|
||||
import { CachedPlayer, getPlayer, McUtilsAPIError } from "mcutils-library";
|
||||
import { Metadata, Viewport } from "next";
|
||||
import { ReactElement } from "react";
|
||||
import { Title } from "@/app/components/title";
|
||||
|
||||
/**
|
||||
* Force the page to be dynamic, so it will be regenerated on every request
|
||||
@ -71,8 +72,10 @@ export default async function Page({ params: { id } }: Params): Promise<ReactEle
|
||||
return (
|
||||
<div className="h-full flex flex-col items-center">
|
||||
<div className="mb-4 text-center">
|
||||
<h1 className="text-xl">Lookup a Player</h1>
|
||||
<p>You can enter a players uuid or username to get information about the player.</p>
|
||||
<Title
|
||||
title="Player Lookup"
|
||||
subtitle="You can enter a players uuid or username to get information about the player."
|
||||
/>
|
||||
|
||||
<LookupPlayer currentPlayer={id && id[0]} />
|
||||
</div>
|
||||
|
@ -18,6 +18,7 @@ import {
|
||||
} from "mcutils-library";
|
||||
import { Metadata, Viewport } from "next";
|
||||
import { ReactElement } from "react";
|
||||
import { Title } from "@/app/components/title";
|
||||
|
||||
/**
|
||||
* Force the page to be dynamic, so it will be regenerated on every request
|
||||
@ -126,8 +127,10 @@ export default async function Page({ params: { platform, hostname } }: Params):
|
||||
return (
|
||||
<div className="h-full flex flex-col items-center">
|
||||
<div className="mb-4 text-center">
|
||||
<h1 className="text-xl">Lookup a {invalidPlatform ? "" : capitalizeFirstLetter(platform)} Server</h1>
|
||||
<p>You can enter a server hostname to get information about the server.</p>
|
||||
<Title
|
||||
title={`Lookup a ${invalidPlatform ? "" : capitalizeFirstLetter(platform)} Server`}
|
||||
subtitle="You can enter a server hostname to get information about the server."
|
||||
/>
|
||||
|
||||
<LookupServer currentPlatform={platform.toLowerCase()} currentServer={hostname && hostname[0]} />
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user