Skip to content

Commit aad021e

Browse files
committed
header, footer and hero updated
1 parent 4994be3 commit aad021e

File tree

5 files changed

+20
-18
lines changed

5 files changed

+20
-18
lines changed

src/components/shared/AppBanner.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const AppBanner = () => {
2525
}}
2626
className="font-general-semibold text-2xl lg:text-3xl xl:text-4xl text-center sm:text-left text-ternary-dark dark:text-primary-light uppercase"
2727
>
28-
Hi, Iam Stoman
28+
Hi, I am SWapnil Khare
2929
</motion.h1>
3030
<motion.p
3131
initial={{ opacity: 0 }}
@@ -37,7 +37,7 @@ const AppBanner = () => {
3737
}}
3838
className="font-general-medium mt-4 text-lg md:text-xl lg:text-2xl xl:text-3xl text-center sm:text-left leading-normal text-gray-500 dark:text-gray-200"
3939
>
40-
A Full-Stack Developer & Design Enthusiast
40+
A Full-Stack Developer
4141
</motion.p>
4242
<motion.div
4343
initial={{ opacity: 0 }}

src/components/shared/AppFooter.jsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,23 @@ const socialLinks = [
1616
{
1717
id: 2,
1818
icon: <FiGithub />,
19-
url: 'https://github.com/realstoman',
19+
url: 'https://github.com/swapnil2597',
2020
},
21+
// {
22+
// id: 3,
23+
// icon: <FiTwitter />,
24+
// url: 'https://twitter.com/realstoman',
25+
// },
2126
{
2227
id: 3,
23-
icon: <FiTwitter />,
24-
url: 'https://twitter.com/realstoman',
25-
},
26-
{
27-
id: 4,
2828
icon: <FiLinkedin />,
29-
url: 'https://www.linkedin.com/in/realstoman',
30-
},
31-
{
32-
id: 5,
33-
icon: <FiYoutube />,
34-
url: 'https://www.youtube.com/c/realstoman',
29+
url: 'https://www.linkedin.com/in/khareswapnil/',
3530
},
31+
// {
32+
// id: 5,
33+
// icon: <FiYoutube />,
34+
// url: 'https://www.youtube.com/c/realstoman',
35+
// },
3636
];
3737

3838
const AppFooter = () => {

src/components/shared/AppHeader.jsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ import { FiMenu, FiMoon, FiSun, FiX } from 'react-icons/fi';
33
import { Link } from 'react-router-dom';
44
import useThemeSwitcher from '../../hooks/useThemeSwitcher';
55
import HireMeModal from '../HireMeModal';
6-
import logoLight from '../../images/logo-light.svg';
7-
import logoDark from '../../images/logo-dark.svg';
6+
// import logoLight from '../../images/logo-light.svg';
7+
// import logoDark from '../../images/logo-dark.svg';
8+
import darkmodeLogo from '../../images/darkmode-logo.png';
9+
import lightmodeLogo from '../../images/lightmode-logo.png';
810
import { motion } from 'framer-motion';
911
import Button from '../reusable/Button';
1012

@@ -49,13 +51,13 @@ const AppHeader = () => {
4951
<Link to="/">
5052
{activeTheme === 'dark' ? (
5153
<img
52-
src={logoDark}
54+
src={lightmodeLogo}
5355
className="w-36"
5456
alt="Dark Logo"
5557
/>
5658
) : (
5759
<img
58-
src={logoLight}
60+
src={darkmodeLogo}
5961
className="w-36"
6062
alt="Dark Logo"
6163
/>

src/images/darkmode-logo.png

45.1 KB
Loading

src/images/lightmode-logo.png

45.1 KB
Loading

0 commit comments

Comments
 (0)