Skip to content
Open
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
2 changes: 2 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import ClickSpark from "@/components/layout/ClickSpark";
import { MotionConfig, MotionConfigContext } from "motion/react";
import type { Metadata } from "next";
import localFont from "next/font/local";
import Footer from "@/components/layout/Footer";

import Navbar from "../components/layout/Navbar";
import "./globals.css";
Expand Down Expand Up @@ -40,6 +41,7 @@ export default function RootLayout({

<ClickSpark sparkColor="#10b875">{children}</ClickSpark>
</MotionConfig>
<Footer />
</body>
</html>
);
Expand Down
49 changes: 45 additions & 4 deletions components/layout/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
'use client';



import Image from 'next/image'

export default function Footer() {
return (
<footer className="text-black bg-white py-8 px-4 sm:px-6 lg:px-8">
<div className="max-w-7xl mx-auto">
{/* social media and copyright */}
<div className="flex flex-col md:flex-row justify-between items-center pb-6 border-b border-gray-600 mb-6">
<div className="text-sm text-center md:text-left mb-4 md:mb-0">
&copy; 2025 Hack4Impact, a 501(c)(3) nonprofit organization. EIN: 08-789456123
</div>
<div className="flex space-x-4">
<a href="https://www.linkedin.com/company/hack4impact/?viewAsMember=true" className="rounded-full p-2">
<Image src="/linkedin.svg" alt="LinkedIn Logo" width={20} height={20}/>
</a>
<a href="https://www.instagram.com/hack4impact/" className="rounded-full p-2">
<Image src="/insta.svg" alt="Instagram Logo" width={20} height={20} />
</a>
<a href="https://www.youtube.com/@hack4impact" className="rounded-full p-2">
<Image src="/yt.svg" alt="Youtube Logo" width={20} height={20}/>
</a>
<a href="#" className="rounded-full p-2">
<Image src="/substack.svg" alt="Substack Logo" width={20} height={20} />
</a>
<a href="https://github.com/hack4impact" className="rounded-full p-2">
<Image src="/github.svg" alt="Github Logo" width={20} height={20} />
</a>
</div>
</div>

{/* links with no references yet! */}
<div className="flex flex-col md:flex-row justify-between items-start md:items-center">
<div className="text-xs text-center md:text-left mb-4 md:mb-0 max-w-md">
We use simple and privacy friendly anlaytics to measure the impact of our work.
We honor no-track requests from your browser.
</div>
<div className="flex flex-col sm:flex-row space-y-2 sm:space-y-0 sm:space-x-6 text-sm">
<a href="#" className="hover:text-white transition-colors duration-200 rounded-md py-1 px-2 hover:bg-gray-700">Cookies</a>
<a href="#" className="hover:text-white transition-colors duration-200 rounded-md py-1 px-2 hover:bg-gray-700">Terms of Use</a>
<a href="#" className="hover:text-white transition-colors duration-200 rounded-md py-1 px-2 hover:bg-gray-700">Privacy Policy</a>
</div>
</div>
</div>
</footer>
);
};
Loading