Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Footer Added #34

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { FollowingPointerDemo } from "@/components/shared/FolowingCard";
import Footer from "@/components/shared/Footer";
import Header from "@/components/shared/Header";
import { Hero } from "@/components/shared/Hero";
import StartNow from "@/components/shared/StartNow";
import { AnimatedTooltipPreview } from "@/components/shared/TooltipSection";


export default function Home() {
return (
<div className="relative">
Expand All @@ -12,6 +14,7 @@ export default function Home() {
<StartNow />
<AnimatedTooltipPreview />
<FollowingPointerDemo />
<Footer />
</div>
);
}
15 changes: 15 additions & 0 deletions src/components/shared/Footer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
const Footer = () => {
return (
<footer className="dark:bg-background border-t p-2">
<div className="flex flex-col md:flex-row flex-wrap justify-center items-center gap-x-4 p-2">
{/* Space for providing important links to the website such as:-
<p>Privacy Policy</p>
<p>Terms of Service</p>
<p>Code of Conduct</p> */}
</div>
<p className="dark:text-neutral-500 text-center">Copyright © 2024 BloxAI | All rights reserved</p>
</footer>
);
};

export default Footer;