Files
2026-07-13 12:58:18 +08:00

14 lines
354 B
TypeScript

"use client";
export function Footer() {
return (
<footer className="bg-white border-t border-gray-200 py-6">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="flex flex-col md:flex-row justify-between items-center">
<p>🪁 Powered by CopilotKit</p>
</div>
</div>
</footer>
);
}