From 57572d459559e57d435d6dbfd0068d1500d9835f Mon Sep 17 00:00:00 2001 From: Ridhima10 Date: Sat, 17 Aug 2024 17:33:18 +0530 Subject: [PATCH] minor fixes --- app/components/helper/scroll-to-top.jsx | 2 +- app/components/homepage/about/index.jsx | 14 +++++-- app/components/homepage/experience/index.jsx | 6 +-- .../homepage/hero-section/index.jsx | 39 ++++++++++--------- app/components/navbar.jsx | 2 +- app/page.js | 2 +- utils/data/experience.js | 6 ++- utils/data/personal-data.js | 2 +- utils/data/skills.js | 3 +- 9 files changed, 44 insertions(+), 32 deletions(-) diff --git a/app/components/helper/scroll-to-top.jsx b/app/components/helper/scroll-to-top.jsx index b532b3d..bf0493b 100644 --- a/app/components/helper/scroll-to-top.jsx +++ b/app/components/helper/scroll-to-top.jsx @@ -4,7 +4,7 @@ import { useEffect, useState } from "react"; import { FaArrowUp } from "react-icons/fa6"; const DEFAULT_BTN_CLS = - "fixed bottom-8 right-6 z-50 flex items-center rounded-full bg-gradient-to-r from-pink-500 to-violet-600 p-4 hover:text-xl transition-all duration-300 ease-out"; + "fixed bottom-8 right-6 z-50 flex items-center rounded-full bg-gradient-to-r text-white from-pink-500 to-violet-600 p-4 hover:text-xl transition-all duration-300 ease-out"; const SCROLL_THRESHOLD = 50; const ScrollToTop = () => { diff --git a/app/components/homepage/about/index.jsx b/app/components/homepage/about/index.jsx index b1bcdd1..1a94801 100644 --- a/app/components/homepage/about/index.jsx +++ b/app/components/homepage/about/index.jsx @@ -2,7 +2,9 @@ import { personalData } from "@/utils/data/personal-data"; import Image from "next/image"; - +import Link from "next/link"; +import { MdDownload } from "react-icons/md"; +import { RiContactsFill } from "react-icons/ri"; function AboutSection() { return ( @@ -21,12 +23,18 @@ function AboutSection() {

{personalData.description}

+ + Get Resume + + +
Ridhima Jain diff --git a/app/components/homepage/experience/index.jsx b/app/components/homepage/experience/index.jsx index 0a5def9..6aa85ed 100644 --- a/app/components/homepage/experience/index.jsx +++ b/app/components/homepage/experience/index.jsx @@ -51,9 +51,9 @@ function Experience() { className="absolute bottom-0 opacity-80" /> */}
- {/*

+

{experience.duration} -

*/} +

@@ -76,7 +76,7 @@ function Experience() { key={index} href={link} target="_blank" - className="transition-all sm:text-center md:text-start text-white hover:scale-125 rounded-full duration-300 bg-gradient-to-r from-violet-600 to-pink-600 ms-2" + className="transition-all sm:text-center md:text-start text-white hover:scale-125 rounded-full duration-300 bg-pink-5 bg-[#101123] hover:bg-pink-500 ms-2" > diff --git a/app/components/homepage/hero-section/index.jsx b/app/components/homepage/hero-section/index.jsx index f244dd6..66ba049 100644 --- a/app/components/homepage/hero-section/index.jsx +++ b/app/components/homepage/hero-section/index.jsx @@ -3,6 +3,9 @@ import { personalData } from "@/utils/data/personal-data"; import Image from "next/image"; import Link from "next/link"; +import { IoLogoGithub, IoMdCall } from "react-icons/io"; +import { BiLogoLinkedin } from "react-icons/bi"; + import { BsGithub, BsLinkedin } from "react-icons/bs"; // import { FaFacebook, FaTwitterSquare } from "react-icons/fa"; import { MdDownload } from "react-icons/md"; @@ -32,42 +35,40 @@ function HeroSection() {
- {/* connect with me +

Socials - : */} - - + :

+ + - - + +
-
- {/* + - */} + Get Resume -
+
*/}
diff --git a/app/components/navbar.jsx b/app/components/navbar.jsx index 091cfab..fe67204 100644 --- a/app/components/navbar.jsx +++ b/app/components/navbar.jsx @@ -6,7 +6,7 @@ const navbar = () => {