Skip to content

Commit

Permalink
Merge pull request #4 from prince-63/master
Browse files Browse the repository at this point in the history
fixing some issue:
  • Loading branch information
Prince Kumar authored Oct 8, 2023
2 parents ab40ea1 + 87b2368 commit a5d7c9f
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 37 deletions.
3 changes: 1 addition & 2 deletions src/components/sections/about-me.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Image from "next/image";
import transition from "@/hooks/transition";
import PrinceKumar from "../../../public/images/prince_kumar.jpg";
import Tag from "@/components/data-display/tag";
import Container from "@/components/layout/container";
Expand Down Expand Up @@ -132,4 +131,4 @@ const AboutMeSection = () => {
);
};

export default transition(AboutMeSection);
export default AboutMeSection;
3 changes: 1 addition & 2 deletions src/components/sections/contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import Container from '@/components/layout/container';
import useWindowSize from '@/hooks/use-window-size';
import { copyTextToClipboard } from '@/lib/utils';
import Reavel from '@/hooks/Reavel';
import transition from '@/hooks/transition';
import ScrollAnimation from '@/hooks/scrollAnimation';

let email = '[email protected]';
Expand Down Expand Up @@ -117,4 +116,4 @@ const ContactSection = () => {
);
};

export default transition(ContactSection);
export default ContactSection;
3 changes: 1 addition & 2 deletions src/components/sections/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import SocialIcons from '@/components/data-display/social-icons';
import Typography from '@/components/general/typography';
import Container from '@/components/layout/container';
import Reavel from '@/hooks/Reavel';
import transition from "@/hooks/transition";
import ScrollAnimation from '@/hooks/scrollAnimation';

const HeroSection = () => {
Expand Down Expand Up @@ -86,4 +85,4 @@ const HeroSection = () => {
);
};

export default transition(HeroSection);
export default HeroSection;
3 changes: 1 addition & 2 deletions src/components/sections/skills.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import TechDetails from '@/components/data-display/tech-details';
import Typography from '@/components/general/typography';
import Container from '@/components/layout/container';
import Reavel from '@/hooks/Reavel';
import transition from '@/hooks/transition';
import ScrollAnimation from '@/hooks/scrollAnimation';

const SkillsSection = () => {
Expand Down Expand Up @@ -34,4 +33,4 @@ const SkillsSection = () => {
);
};

export default transition(SkillsSection);
export default SkillsSection;
3 changes: 1 addition & 2 deletions src/components/sections/testimonials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import Tag from '@/components/data-display/tag';
import TestimonialDetails from '@/components/data-display/testimonial-details';
import Typography from '@/components/general/typography';
import Container from '@/components/layout/container';
import transition from '@/hooks/transition';
import ScrollAnimation from '@/hooks/scrollAnimation';

const TestimonialsSection = () => {
Expand All @@ -29,4 +28,4 @@ const TestimonialsSection = () => {
);
};

export default transition(TestimonialsSection);
export default TestimonialsSection;
3 changes: 1 addition & 2 deletions src/components/sections/work.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import Tag from '@/components/data-display/tag';
import Typography from '@/components/general/typography';
import Container from '@/components/layout/container';
import Reavel from '@/hooks/Reavel';
import transition from '@/hooks/transition';
import ScrollAnimation from '@/hooks/scrollAnimation';

const WorkSection = () => {
Expand Down Expand Up @@ -36,4 +35,4 @@ const WorkSection = () => {
);
};

export default transition(WorkSection);
export default WorkSection;
25 changes: 0 additions & 25 deletions src/hooks/transition.jsx

This file was deleted.

0 comments on commit a5d7c9f

Please sign in to comment.