Files
29fc820e-7588-4c85-8a20-499…/src/components/Footer.tsx
2026-01-27 15:58:12 +08:00

22 lines
702 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React from 'react'
export const Footer: React.FC = () => {
return (
<footer className="mt-10 pb-10">
<div className="container mx-auto px-4">
<div className="surface rounded-2xl px-6 py-6 text-white">
<div className="flex flex-col sm:flex-row items-start sm:items-center justify-between gap-4">
<div>
<div className="font-display text-lg"></div>
<div className="text-white/70 text-sm mt-1"></div>
</div>
<div className="text-white/60 text-xs">
Demo UI · 2026-01-01
</div>
</div>
</div>
</div>
</footer>
)
}