diff --git a/.husky/_/husky.sh b/.husky/_/husky.sh
index dab6c54..f9d0637 100644
--- a/.husky/_/husky.sh
+++ b/.husky/_/husky.sh
@@ -1,28 +1,9 @@
-#!/bin/sh
-if [ -z "$husky_skip_init" ]; then
- debug () {
- if [ "$HUSKY_DEBUG" = "1" ]; then
- echo "husky (debug) - $1"
- fi
- }
- readonly hook_name="$(basename "$0")"
- debug "starting $hook_name..."
- if [ "$HUSKY" = "0" ]; then
- debug "HUSKY env variable is set to 0, skipping hook"
- exit 0
- fi
- if [ -f ~/.huskyrc ]; then
- debug "sourcing ~/.huskyrc"
- . ~/.huskyrc
- fi
+echo "husky - DEPRECATED
- export readonly husky_skip_init=1
- sh -e "$0" "$@"
- exitCode="$?"
+Please remove the following two lines from $0:
- if [ $exitCode != 0 ]; then
- echo "husky - $hook_name hook exited with code $exitCode (error)"
- fi
+#!/usr/bin/env sh
+. \"\$(dirname -- \"\$0\")/_/husky.sh\"
- exit $exitCode
-fi
\ No newline at end of file
+They WILL FAIL in v10.0.0
+"
\ No newline at end of file
diff --git a/app/temp/page.tsx b/app/temp/page.tsx
index 7a07b93..132e26a 100644
--- a/app/temp/page.tsx
+++ b/app/temp/page.tsx
@@ -7,7 +7,9 @@ import { Playfair_Display } from "next/font/google";
import Image from "next/image";
import Director from "@/components/about-page/Director";
import VC from "@/components/about-page/VC";
-
+import Mission from "@/components/about-page/Mission";
+import Vision from "@/components/about-page/Vision";
+import Landmarks from "@/components/about-page/Landmarks";
const playfair = Playfair_Display({
subsets: ["latin"],
weight: ["400", "500", "600", "700", "800", "900"],
@@ -15,15 +17,14 @@ const playfair = Playfair_Display({
const page = () => {
return (
<>
-
+
+
+
+
+
+
+
+
>
);
};
diff --git a/components/about-page/Customslide.tsx b/components/about-page/Customslide.tsx
new file mode 100644
index 0000000..31f6774
--- /dev/null
+++ b/components/about-page/Customslide.tsx
@@ -0,0 +1,30 @@
+"use client";
+import React from "react";
+import { Manrope } from "next/font/google";
+import { Achievement } from "grommet-icons";
+
+const manrope = Manrope({
+ subsets: ["latin"],
+ weight: ["200", "300", "400", "500"],
+});
+interface Slideprops {
+ id: string;
+ // icon: JSX.Element | string;
+ heading: string;
+ paragraph: string;
+}
+const Customslide = ({ id, heading, paragraph }: Slideprops) => {
+ return (
+
+
+
{heading}
+
+ {paragraph}
+
+
+ );
+};
+export default Customslide;
diff --git a/components/about-page/DesCard.tsx b/components/about-page/DesCard.tsx
new file mode 100644
index 0000000..4de1cab
--- /dev/null
+++ b/components/about-page/DesCard.tsx
@@ -0,0 +1,16 @@
+import React from "react";
+interface Cardprop {
+ id: string;
+ description: string;
+}
+const DesCard = ({ id, description }: Cardprop) => {
+ return (
+
+
{id}
+
+ {description}
+
+
+ );
+};
+export default DesCard;
diff --git a/components/about-page/Landmarks.tsx b/components/about-page/Landmarks.tsx
new file mode 100644
index 0000000..97cba6c
--- /dev/null
+++ b/components/about-page/Landmarks.tsx
@@ -0,0 +1,37 @@
+"use client";
+import React from "react";
+import "slick-carousel/slick/slick.css";
+import "slick-carousel/slick/slick-theme.css";
+import dynamic from "next/dynamic";
+import { landmarks } from "@/constants/about-page/landmarks";
+import Customslide from "./Customslide";
+const Slider = dynamic(() => import("react-slick"), {
+ ssr: false,
+});
+function Landmarks() {
+ var settings = {
+ dots: true,
+ infinite: false,
+ speed: 500,
+ slidesToScroll: 4,
+ slidesToShow: 4,
+ };
+ return (
+
+
+ {landmarks.map((value: any, id) => {
+ return (
+
+ );
+ })}
+
+
+ );
+}
+
+export default Landmarks;
diff --git a/components/about-page/Mission.tsx b/components/about-page/Mission.tsx
new file mode 100644
index 0000000..789bc65
--- /dev/null
+++ b/components/about-page/Mission.tsx
@@ -0,0 +1,39 @@
+"use client";
+import React from "react";
+import {
+ missions,
+ missionDavv,
+ missionIet,
+} from "@/constants/about-page/mission";
+import { useState } from "react";
+import DesCard from "./DesCard";
+
+const Mission = () => {
+ const [preview, setPreview] = useState