diff --git a/components/NavBar.jsx b/components/NavBar.jsx
index 8cd1666..eda045c 100644
--- a/components/NavBar.jsx
+++ b/components/NavBar.jsx
@@ -274,6 +274,15 @@ export default function NavBar() {
Organizations
+
+ About
+
+
{user !== null ? (
<>
diff --git a/components/about.jsx b/components/about.jsx
new file mode 100644
index 0000000..bc7a608
--- /dev/null
+++ b/components/about.jsx
@@ -0,0 +1,64 @@
+import React, { useEffect, useState } from "react";
+import NavBar from "@/components/NavBar"; // Import the NavBar
+import { motion } from "framer-motion"; // Import framer-motion for animation effects
+
+export default function About() {
+ const [showContent, setShowContent] = useState(false);
+
+ // A simple animation effect when the page loads
+ useEffect(() => {
+ setTimeout(() => {
+ setShowContent(true);
+ }, 200);
+ }, []);
+
+ return (
+ <>
+
+
+
+
+ About JobSewa
+
+
+ JobSewa is a platform dedicated to bridging the gap between job
+ seekers and employers. Whether you're looking to post jobs, find
+ opportunities, or stay up-to-date with the latest industry trends,
+ we've got you covered. Our mission is to empower both employers and
+ job seekers by providing a seamless experience and fostering a
+ supportive community.
+
+
+
+ Our Vision
+
+
+ To build a future where job searching is effortless, effective,
+ and efficient for all. Our aim is to make meaningful connections
+ between talents and opportunities that help people achieve their
+ career goals.
+
+
+ Our Mission
+
+
+ We strive to create a job platform that prioritizes user
+ experience, provides transparency, and connects the right people
+ to the right jobs in a timely manner.
+
+
+
+
+ >
+ );
+}
diff --git a/pages/_app.js b/pages/_app.js
index 3594623..5b2c1f7 100644
--- a/pages/_app.js
+++ b/pages/_app.js
@@ -5,6 +5,8 @@ import { useEffect } from "react";
import { useRouter } from "next/router";
import Cookies from 'js-cookie';
import 'react-toastify/dist/ReactToastify.css';
+import '../styles/globals.css'; // Ensure this is imported to use globally
+
diff --git a/pages/auth/forget-password.jsx b/pages/auth/forget-password.jsx
index 015c484..a51b1d9 100644
--- a/pages/auth/forget-password.jsx
+++ b/pages/auth/forget-password.jsx
@@ -38,7 +38,7 @@ export default function ForgetPassword() {
}
if (formData.password !== formData.confirmPassword) {
- toast.error("Password and Confirm Password does not match");
+ toast.error("Password and Confirm Password do not match");
}
const res = await forget_password(formData);
@@ -55,94 +55,97 @@ export default function ForgetPassword() {
return (
<>
-
+