Skip to content

Commit

Permalink
💚 fix : broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-madhurendra committed Apr 16, 2024
1 parent 3377d83 commit c788c3d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="public/gif/Logo.gif" type="image/x-icon">
<title>👋 | Madhurendra's Tech Odyssey</title>
<title>👋 | Madhurendra's Portfolio</title>
</head>
<body>
<div id="root"></div>
Expand Down
7 changes: 3 additions & 4 deletions frontend/src/pages/Home/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useEffect } from 'react'
import Typed from 'typed.js';
import { typeAttributes } from '../../services/mocks/mocks';
import { HERO_SECTION_IMAGE, RESUME_LINK } from '../../utils/constants';
import { HERO_SECTION_IMAGE, HIRE_ME_HREF, RESUME_LINK } from '../../utils/constants';
import { ButtonHomeDiv, CapsuleButton, GreetHomeDiv, HomeDiv, IntroDiv, LeftHomeDiv, RightHomeDiv, TypedHomeDiv } from '../../utils/styled';
import SocialMediaIcons from '../../components/molecules/SocialMediaIcons';
import HeroSectionImage from '../../../public/gif/Video-Call.gif'
Expand All @@ -10,8 +10,6 @@ import { faDownload, faUser } from '@fortawesome/free-solid-svg-icons';
import AnimatedName from '../../components/molecules/AnimatedName';
import './style.css'



const HomeSection = () => {
const el = React.useRef(null);
useEffect(() => {
Expand Down Expand Up @@ -46,7 +44,8 @@ const HomeSection = () => {
<CapsuleButton
variant="outlined"
startIcon={<FontAwesomeIcon
icon={faUser} />}
icon={faUser} />}
href={HIRE_ME_HREF}
>
Hire Me
</CapsuleButton>
Expand Down
1 change: 1 addition & 0 deletions frontend/src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,4 @@ export const TEXTAREA = "textarea"
export const SUBMIT = 'submit'
export const POST = 'post'
export const MULTI_PART_FORM_DATA = "multipart/form-data";
export const HIRE_ME_HREF = '#contact';

0 comments on commit c788c3d

Please sign in to comment.