add per page names
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 54s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 54s
This commit is contained in:
parent
8cd4ba4463
commit
a8cf19ba00
@ -1,4 +1,9 @@
|
||||
import PlayerSearch from "@/components/player-search";
|
||||
import { Metadata } from "next";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Lookup Player",
|
||||
};
|
||||
|
||||
export default function Player() {
|
||||
return (
|
||||
|
@ -1,6 +1,11 @@
|
||||
import ServerSearch from "@/components/server-search";
|
||||
import { Metadata } from "next";
|
||||
|
||||
export default function Player() {
|
||||
export const metadata: Metadata = {
|
||||
title: "Lookup Server",
|
||||
};
|
||||
|
||||
export default function Server() {
|
||||
return (
|
||||
<div className="h-full flex flex-col items-center">
|
||||
<div className="mb-4 text-center">
|
||||
|
Loading…
Reference in New Issue
Block a user