13 lines
595 B
JavaScript
13 lines
595 B
JavaScript
export default function Footer() {
|
|
return (
|
|
<footer className="w-full py-8 mt-12 border-t border-gray-200 dark:border-gray-700">
|
|
<div className="max-w-4xl mx-auto px-4 text-center">
|
|
<p className="text-sm text-gray-500 dark:text-gray-400">
|
|
Disclaimer: The OSSM Configurator is an independent open-source project.
|
|
We are not directly associated with the vendors listed, but their contributions to open source are deeply appreciated and reciprocated.
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|