Spaces:
Running
Running
File size: 305 Bytes
17fabdd |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
"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>
);
}
|