diff --git a/src/app/page.tsx b/src/app/page.tsx
index 7bcd29e..a089df5 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,3 +1,9 @@
+import Footer from '@/components/Footer';
+
export default function Home() {
- return
;
+ return (
+
+
+
+ );
}
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
new file mode 100644
index 0000000..a9eda0e
--- /dev/null
+++ b/src/components/Footer.tsx
@@ -0,0 +1,49 @@
+import Link from 'next/link';
+
+export default function Footer() {
+ return (
+
+
+
+
+
+ Socials
+
+
+ Instagram
+ Facebook
+ Github
+ Youtube
+ LinkedIn
+ TikTok
+
+
+
+
+ Quick Navs
+
+
+ Home
+ About
+ Blog
+ Podcast
+ Events
+ Register
+
+
+
+
+
+
SLIIT FOSS
+
+
+
+
+ Copyright 2025 SLIIT FOSS
+
+
+
+ );
+}