Skip to content

Commit 413d588

Browse files
filled out links and info
1 parent a6109c6 commit 413d588

File tree

4 files changed

+18
-24
lines changed

4 files changed

+18
-24
lines changed

src/components/Navbar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Link, useLocation } from "react-router-dom"
22

33
const navLinks = [
4-
{ label: "Resume", href: "/resume.pdf", external: true },
4+
{ label: 'Resume', href: 'https://drive.google.com/file/d/1dutCWoKjZ_n3XdYozZNvu5iDTLdihdAT/view?usp=drive_link', external: true },
55
{ label: "Projects", href: "/projects", external: false },
66
{ label: "Experience", href: "/experience", external: false }, // placeholder
77
]

src/components/Sidebar.jsx

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1-
import { FaGithub, FaLinkedin, FaTwitter, FaGraduationCap } from "react-icons/fa6"
1+
import { FaGithub, FaLinkedin, FaTwitter, FaGraduationCap, FaGoogleScholar } from "react-icons/fa6"
22
import { HiOutlineMail, HiPhone } from "react-icons/hi"
33

4+
// const socials = [
5+
// { label: "GitHub", href: "https://github.com/yourusername", icon: FaGithub },
6+
// { label: "LinkedIn", href: "https://linkedin.com/in/yourusername", icon: FaLinkedin },
7+
// { label: "Twitter", href: "https://twitter.com/yourhandle", icon: FaTwitter },
8+
// { label: "Scholar", href: "https://scholar.google.com/citations?user=XXXXXX", icon: FaGraduationCap },
9+
// ]
410
const socials = [
5-
{ label: "GitHub", href: "https://github.com/yourusername", icon: FaGithub },
6-
{ label: "LinkedIn", href: "https://linkedin.com/in/yourusername", icon: FaLinkedin },
7-
{ label: "Twitter", href: "https://twitter.com/yourhandle", icon: FaTwitter },
8-
{ label: "Scholar", href: "https://scholar.google.com/citations?user=XXXXXX", icon: FaGraduationCap },
11+
{ label: 'GitHub', href: 'https://github.com/jaspreetbhamra', icon: FaGithub },
12+
{ label: 'LinkedIn', href: 'https://www.linkedin.com/in/jaspreet-kaur-bhamra/', icon: FaLinkedin },
13+
// { label: 'Twitter', href: 'https://twitter.com/yourhandle', icon: FaTwitter },
14+
{ label: 'Scholar', href: 'https://scholar.google.com/citations?user=xwU4PZsAAAAJ&hl=en', icon: FaGoogleScholar },
915
]
1016

1117
const Sidebar = ({ textColorClass, headingFontClass }) => {
@@ -38,18 +44,18 @@ const Sidebar = ({ textColorClass, headingFontClass }) => {
3844
{/* Contact Info */}
3945
<div className="flex w-full flex-col items-center gap-2 border-t border-slate-400/30 pt-4 text-sm">
4046
<a
41-
href="mailto:dummy.email@example.com"
47+
href="mailto:jbhamra24@gmail.com"
4248
className={`flex items-center gap-2 ${textColorClass} hover:text-sky-500 transition-colors`}
4349
>
4450
<HiOutlineMail className="h-4 w-4" />
45-
dummy.email@example.com
51+
jbhamra24@gmail.com
4652
</a>
4753
<a
48-
href="tel:+1234567890"
54+
href="tel:+18582411769"
4955
className={`flex items-center gap-2 ${textColorClass} hover:text-sky-500 transition-colors`}
5056
>
5157
<HiPhone className="h-4 w-4" />
52-
+1 (234) 567-890
58+
+1 (858) 241-1769
5359
</a>
5460
</div>
5561

src/pages/Home.jsx

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,6 @@ import { getBlurb } from '../utils/api.js'
1212
import Sidebar from "../components/Sidebar"
1313

1414

15-
const navLinks = [
16-
{ label: 'Resume', href: 'https://drive.google.com/file/d/1dutCWoKjZ_n3XdYozZNvu5iDTLdihdAT/view?usp=drive_link', external: true },
17-
{ label: 'Projects', href: '/projects' },
18-
{ label: 'Experience', href: '#experience' },
19-
]
20-
21-
const socials = [
22-
{ label: 'GitHub', href: 'https://github.com/yourusername', icon: FaGithub },
23-
{ label: 'LinkedIn', href: 'https://linkedin.com/in/yourusername', icon: FaLinkedin },
24-
{ label: 'Twitter', href: 'https://twitter.com/yourhandle', icon: FaTwitter },
25-
{ label: 'Scholar', href: 'https://scholar.google.com/citations?user=XXXXXX', icon: FaGoogleScholar },
26-
]
27-
2815
const backdropVariants = {
2916
initial: { opacity: 0 },
3017
animate: { opacity: 1 },

vite.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import react from '@vitejs/plugin-react'
33

44
// https://vite.dev/config/
55
export default defineConfig({
6-
base: '/jaspreetbhamra.github.io/',
6+
base: command === "serve" ? "/" : '/jaspreetbhamra.github.io/',
7+
// base: '/',
78
plugins: [react()],
89
test: {
910
globals: true,

0 commit comments

Comments
 (0)