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
8 changes: 7 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
import Footer from '@/components/Footer';

export default function Home() {
return <div></div>;
return (
<div>
<Footer />
</div>
);
}
49 changes: 49 additions & 0 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import Link from 'next/link';

export default function Footer() {
return (
<div className="bg-black px-[20px] py-[30px] md:px-[50px] md:py-[30px] flex flex-col gap-[40px]">
<div>
<div className="flex gap-[100px] md:gap-[200px]">
<div>
<h1 className="font-montserrat font-medium text-[21px] ">
Socials
</h1>
<div className="font-montserrat font-medium text-[15px] text-white/53 flex flex-col gap-[9px] mt-[9px]">
<Link href={'#'}>Instagram</Link>
<Link href={'#'}>Facebook</Link>
<Link href={'#'}>Github</Link>
<Link href={'#'}>Youtube</Link>
<Link href={'#'}>LinkedIn</Link>
<Link href={'#'}>TikTok</Link>
</div>
</div>
<div>
<h1 className="font-montserrat font-medium text-[21px] ">
Quick Navs
</h1>
<div className="font-montserrat font-medium text-[15px] text-white/53 flex flex-col gap-[9px] mt-[9px]">
<Link href={'#'}>Home</Link>
<Link href={'#'}>About</Link>
<Link href={'#'}>Blog</Link>
<Link href={'#'}>Podcast</Link>
<Link href={'#'}>Events</Link>
<Link href={'#'}>Register</Link>
</div>
</div>
</div>
</div>
<div className="flex justify-between items-center">
<h1 className="font-montserrat font-medium text-[20px]">SLIIT FOSS</h1>
<div className="p-[1px] bg-gradient-to-r from-[#62DDFF] to-[#B039FF] rounded-[17px] inline-block">
<button className="font-bricolage font-extralight text-[20px] bg-black text-white rounded-[16px] px-[6px] py-[4px]">
Back to top
</button>
</div>
<div className="hidden md:block font-montserrat font-medium text-[20px]">
Copyright 2025 SLIIT FOSS
</div>
</div>
</div>
);
}