add footer

This commit is contained in:
Felix Schulze 2025-05-01 20:11:50 +02:00
parent f96648e162
commit ad4b86ef74
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
export default function Footer() {
return (
<footer className="w-full py-8 text-center text-xs">
<p className="text-xs">
© {new Date().getFullYear()} InvestingFIRE. All rights reserved.{" "}
<a
href="https://schulze.network"
target="_blank"
className="text-primary hover:underline"
>
Hosting by Schulze.network
</a>
</p>
</footer>
);
}

View File

@ -6,6 +6,7 @@ import {
AccordionItem,
AccordionTrigger,
} from "@/components/ui/accordion";
import Footer from "./components/footer";
export default function HomePage() {
return (
@ -370,6 +371,7 @@ export default function HomePage() {
</div>
</section>
</div>
<Footer />
</main>
);
}