diff --git a/src/components/ContactPage/ContactUsForm.jsx b/src/components/ContactPage/ContactUsForm.jsx
index 81deafe..0754f1d 100644
--- a/src/components/ContactPage/ContactUsForm.jsx
+++ b/src/components/ContactPage/ContactUsForm.jsx
@@ -62,7 +62,10 @@ const ContactUsForm = () => {
name="firstname"
id="firstname"
placeholder="Enter first name"
- className="form-style"
+ style={{
+ boxShadow: "inset 0px -1px 0px rgba(255, 255, 255, 0.18)",
+ }}
+ className='w-full rounded-[0.5rem] bg-richblack-800 p-[12px] text-richblack-5'
{...register("firstname", { required: true })}
/>
{errors.firstname && (
@@ -71,6 +74,7 @@ const ContactUsForm = () => {
)}
+
@@ -95,7 +102,10 @@ const ContactUsForm = () => {
name="email"
id="email"
placeholder="Enter email address"
- className="form-style"
+ style={{
+ boxShadow: "inset 0px -1px 0px rgba(255, 255, 255, 0.18)",
+ }}
+ className='w-full rounded-[0.5rem] bg-richblack-800 p-[12px] text-richblack-5'
{...register("email", { required: true })}
/>
{errors.email && (
@@ -117,7 +127,10 @@ const ContactUsForm = () => {
name="firstname"
id="firstname"
placeholder="Enter first name"
- className="form-style"
+ style={{
+ boxShadow: "inset 0px -1px 0px rgba(255, 255, 255, 0.18)",
+ }}
+ className='w-full rounded-[0.5rem] bg-richblack-800 p-[12px] text-richblack-5'
{...register("countrycode", { required: true })}
>
{CountryCode.map((ele, i) => {
@@ -129,13 +142,17 @@ const ContactUsForm = () => {
})}
+
{
cols="30"
rows="7"
placeholder="Enter your message here"
- className="form-style"
+ style={{
+ boxShadow: "inset 0px -1px 0px rgba(255, 255, 255, 0.18)",
+ }}
+ className='w-full rounded-[0.5rem] bg-richblack-800 p-[12px] text-richblack-5'
{...register("message", { required: true })}
/>
{errors.message && (
diff --git a/src/components/common/Footer.jsx b/src/components/common/Footer.jsx
index eb10fba..dd1ccf6 100644
--- a/src/components/common/Footer.jsx
+++ b/src/components/common/Footer.jsx
@@ -3,7 +3,7 @@ import { FooterLink2 } from "../../data/footer-links";
import { Link } from "react-router-dom";
// Images
-import Logo from "../../assets/Logo/Logo-Full-Light.png";
+import Logo from "../../assets/Logo/new_logo.png"
// Icons
import { FaFacebook, FaGoogle, FaTwitter, FaYoutube } from "react-icons/fa";
@@ -24,7 +24,7 @@ const Community = ["Forums", "Chapters", "Events"];
const Footer = () => {
return (
-
+
{/* Section 1 */}
diff --git a/src/components/common/Navbar.jsx b/src/components/common/Navbar.jsx
index 27d1533..47c9ec8 100644
--- a/src/components/common/Navbar.jsx
+++ b/src/components/common/Navbar.jsx
@@ -1,6 +1,6 @@
import React, { useEffect, useState } from 'react'
import { Link, matchPath } from 'react-router-dom'
-import logo from "../../assets/Logo/Logo-Full-Light.png"
+import logo from "../../assets/Logo/new_logo.png"
import { NavbarLinks } from '../../data/navbar-links'
import { useLocation } from 'react-router-dom'
import { useSelector } from 'react-redux'
@@ -52,13 +52,13 @@ const Navbar = () => {
return (
+ bg-black transition-all duration-200`}>
{/* Logo */}
-
+
{/* Navbar Links */}
diff --git a/src/components/common/ReviewSlider.jsx b/src/components/common/ReviewSlider.jsx
index 9d18e04..27f9407 100644
--- a/src/components/common/ReviewSlider.jsx
+++ b/src/components/common/ReviewSlider.jsx
@@ -37,8 +37,8 @@ const ReviewSlider = () => {
{
return (
@@ -113,9 +114,9 @@ const About = () => {
Reviews from other learners
- {/* */}
- {/* */}
+
+
{/*
*/}
diff --git a/src/pages/Contact.jsx b/src/pages/Contact.jsx
index e20b0dc..91d1578 100644
--- a/src/pages/Contact.jsx
+++ b/src/pages/Contact.jsx
@@ -2,6 +2,7 @@ import React from 'react'
import ContactDetails from '../components/ContactPage/ContactDetails'
import ContactForm from '../components/ContactPage/ContactForm'
import Footer from "../components/common/Footer"
+import ReviewSlider from '../components/common/ReviewSlider'
const Contact = () => {
return (
@@ -22,7 +23,7 @@ const Contact = () => {
Reviews from other learners
- {/*
*/}
+
diff --git a/src/services/operations/studentFeaturesAPI.js b/src/services/operations/studentFeaturesAPI.js
index c78a28e..0141f0c 100644
--- a/src/services/operations/studentFeaturesAPI.js
+++ b/src/services/operations/studentFeaturesAPI.js
@@ -3,7 +3,7 @@ import { studentEndpoints } from "../apis";
import { apiConnector } from "../apiconnector";
import { setPaymentLoading } from "../../slices/courseSlice";
import { resetCart } from "../../slices/cartSlice";
-import rzpLogo from '../../assets/Logo/rzp_logo.png'
+import rzpLogo from '../../assets/Logo/codeholic-logo.png'
const {COURSE_PAYMENT_API, COURSE_VERIFY_API, SEND_PAYMENT_SUCCESS_EMAIL_API} = studentEndpoints;