- Refactor landing page content and links for better user experience. - Introduce a new library page to display disease information with filtering and modal details. - Add a scan page for users to upload images for diagnosis with a preview modal. - Enhance login and registration pages with automatic navigation to the dashboard. - Integrate vite-tsconfig-paths for improved path resolution in Vite configuration.
10 lines
265 B
TypeScript
10 lines
265 B
TypeScript
export function Footer() {
|
|
return (
|
|
<footer className="border-t bg-[#ECF4E8]">
|
|
<div className="mx-auto max-w-6xl px-6 py-6 text-sm text-muted-foreground text-center">
|
|
© 2026 ZeaVis Edu - AI for Smart Education
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|