From 8656fde770030699e9d81659e14ee2fb38052caa Mon Sep 17 00:00:00 2001 From: IT24100028 Date: Thu, 16 Oct 2025 19:27:39 +0530 Subject: [PATCH 1/2] feat: add footer --- src/app/page.tsx | 8 ++++++- src/components/Footer.tsx | 49 +++++++++++++++++++++++++++++++++++++++ tsconfig.json | 8 ++++++- 3 files changed, 63 insertions(+), 2 deletions(-) create mode 100644 src/components/Footer.tsx 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..0b52f11 --- /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 +
+
+
+ ); +} diff --git a/tsconfig.json b/tsconfig.json index c133409..b5b4af0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,6 +22,12 @@ "@/*": ["./src/*"] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx", + ".next/types/**/*.ts", + "tailwind.config.js" + ], "exclude": ["node_modules"] } From f880c2ded291cad5ba324554c76c8f1b50fb4682 Mon Sep 17 00:00:00 2001 From: IT24100028 Date: Thu, 16 Oct 2025 19:47:11 +0530 Subject: [PATCH 2/2] fix: remove unused tailwind.config.js from project --- src/components/Footer.tsx | 4 ++-- tsconfig.json | 8 +------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 0b52f11..a9eda0e 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -2,9 +2,9 @@ import Link from 'next/link'; export default function Footer() { return ( -
+
-
+

Socials diff --git a/tsconfig.json b/tsconfig.json index b5b4af0..c133409 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,12 +22,6 @@ "@/*": ["./src/*"] } }, - "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx", - ".next/types/**/*.ts", - "tailwind.config.js" - ], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "exclude": ["node_modules"] }