Skip to content

Commit c32e913

Browse files
feat: add my personal portfolio
1 parent 6b7aeeb commit c32e913

19 files changed

Lines changed: 401 additions & 133 deletions

index.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" href="/favicon.ico" />
5+
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
6+
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
67
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<meta name="description" content="Personal portfolio - [Your Name]" />
8+
<meta name="description" content="Bach Ngoc Minh Chau - Software Engineer | Edge AI & Embedded Systems" />
89
<meta name="theme-color" content="#0a0a0f" />
910

1011
<!-- Fonts -->
1112
<link rel="preconnect" href="https://fonts.googleapis.com">
1213
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1314
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
1415

15-
<title>Frostpixel | Portfolio</title>
16+
<title>FrostPixel</title>
1617
</head>
1718
<body>
1819
<div id="root"></div>

public/favicon.ico

5.12 KB
Binary file not shown.

public/images/906715.jpg

2.01 MB
Loading

public/images/fpt_logo.png

12.6 KB
Loading

public/images/profile.jpg

83.2 KB
Loading

public/images/projects/attas.png

92.5 KB
Loading

public/snow.svg

Lines changed: 25 additions & 0 deletions
Loading

public/star.svg

Lines changed: 4 additions & 0 deletions
Loading

public/vite.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/components/layout/Navbar.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useState } from 'react';
22
import { Link, useLocation } from 'react-router-dom';
3-
import { MenuIcon, CloseIcon, GithubIcon, LinkedinIcon, LeetcodeIcon } from '../ui/Icons';
3+
import { MenuIcon, CloseIcon, GithubIcon, LinkedinIcon, LeetcodeIcon, SnowIcon } from '../ui/Icons';
44
import { socialLinks } from '../../data/social';
55

66
const navItems = [
@@ -43,9 +43,10 @@ export function Navbar({ transparent = false }: NavbarProps) {
4343
{/* Logo */}
4444
<Link
4545
to="/"
46-
className="text-xl font-bold text-cyan-400 hover:text-cyan-300 transition-colors"
46+
className="text-white hover:text-cyan-300 transition-colors"
47+
aria-label="Home"
4748
>
48-
FROSTPIXEL
49+
<SnowIcon className="w-8 h-8" />
4950
</Link>
5051

5152
{/* Desktop Navigation */}

0 commit comments

Comments
 (0)