FauziIsyrinApridal
init
17fabdd
raw
history blame contribute delete
305 Bytes
"use client";
import * as React from "react";
export function Footer() {
return (
<div className="mt-10 flex w-full items-center justify-center border-t bg-orange-600 py-5">
<h1 className="text-center text-sm font-semibold text-white">
PNP Bot est. 2025
</h1>
</div>
);
}