first commit

This commit is contained in:
“dongming”
2025-12-28 22:43:26 +08:00
commit ed40350aeb
46 changed files with 14844 additions and 0 deletions

14
src/components/Footer.tsx Normal file
View File

@@ -0,0 +1,14 @@
import React from 'react'
export const Footer: React.FC = () => {
return (
<footer className="bg-gray-50 border-t border-gray-200 py-8 mt-12">
<div className="container mx-auto px-4 text-center text-gray-600">
<p>Powered by TenantCMS</p>
<p className="text-sm mt-2">
Using X-Tenant-Slug for multi-tenant authentication
</p>
</div>
</footer>
)
}