diff --git a/package-lock.json b/package-lock.json index 8b2116a..a87abd8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,6 +8,7 @@ "classnames": "^2.5.1", "date-fns": "^3.6.0", "gray-matter": "^4.0.3", + "lucide-react": "^0.469.0", "next": "15.0.2", "react": "19.0.0-rc-02c0e824-20241028", "react-dom": "19.0.0-rc-02c0e824-20241028", @@ -1796,6 +1797,15 @@ "dev": true, "license": "ISC" }, + "node_modules/lucide-react": { + "version": "0.469.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.469.0.tgz", + "integrity": "sha512-28vvUnnKQ/dBwiCQtwJw7QauYnE7yd2Cyp4tTTJpvglX4EMpbflcdBgrgToX2j71B3YvugK/NH3BGUk+E/p/Fw==", + "license": "ISC", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, "node_modules/mdast-util-from-markdown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", diff --git a/package.json b/package.json index a5c6f0b..bb74f4c 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "classnames": "^2.5.1", "date-fns": "^3.6.0", "gray-matter": "^4.0.3", + "lucide-react": "^0.469.0", "next": "15.0.2", "react": "19.0.0-rc-02c0e824-20241028", "react-dom": "19.0.0-rc-02c0e824-20241028", diff --git a/public/favicon/apple-touch-icon.png b/public/favicon/apple-touch-icon.png deleted file mode 100644 index 8f4033b..0000000 Binary files a/public/favicon/apple-touch-icon.png and /dev/null differ diff --git a/public/favicon/safari-pinned-tab.svg b/public/favicon/safari-pinned-tab.svg deleted file mode 100644 index fbc3596..0000000 --- a/public/favicon/safari-pinned-tab.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/app/_components/Navbar.tsx b/src/app/_components/Navbar.tsx index 3c1c2b5..b1f7be7 100644 --- a/src/app/_components/Navbar.tsx +++ b/src/app/_components/Navbar.tsx @@ -37,19 +37,22 @@ export default function Navbar() { @@ -73,16 +78,17 @@ export default function Navbar() {
+ }`} + >
diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..77f00dc --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,130 @@ +import Container from "../_components/container"; +import { EXAMPLE_PATH } from "@/lib/constants"; +import Image from "next/image"; +import { + Mail, + MapPin, + Github, + Facebook, + Linkedin, + Instagram, + Globe, +} from "lucide-react"; + +export default function About() { + return ( + +
+
+
+ SLIIT SESC Logo +
+
+

+ SLIIT SESC (Software Engineering Students' Community) is a dynamic + organization at the Sri Lanka Institute of Information Technology. + We foster collaboration, knowledge sharing, and skill development + among software engineering students, preparing them for the + challenges of the tech industry. +

+

+ Our blog showcases insights, experiences, and the latest trends in + software engineering, reflecting the vibrant spirit of our + community. +

+
+
+ +
+
+

+ Our Mission +

+
    +
  • + Maintain a healthy interpersonal relationship among the software + engineering undergraduates and the academic staff. +
  • +
  • + Promote academic related and non-academic events/activities for + the wellbeing of student community. +
  • +
+
+ +
+

+ Contact Us +

+
+ +
+ + SLIIT, New Kandy Road, Malabe, Sri Lanka +
+ +
+
+ + + + + + + + + + + + +
+
+
+
+
+ ); +}