Skip to content

Commit 26fb66e

Browse files
committed
fix
1 parent cb845f5 commit 26fb66e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

js/components/Header.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const Header = ({ currentPage, onNavigate }) => {
1010
<header>
1111
<div className="container">
1212
<nav>
13-
<a href="#home" onClick={(e) => { e.preventDefault(); onNavigate('home'); }} className="logo">ZhaoJinHao</a>
13+
<a href="#home" onClick={(e) => { e.preventDefault(); onNavigate('home'); }} className="logo">ZhaoJinHao(赵金灏)</a>
1414
<ul className="nav-links">
1515
{navItems.map((item) => (
1616
<li key={item.id}>

js/pages/HomePage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const HomePage = ({ onNavigate }) => {
4848
</div>
4949
</section>
5050

51-
<section className="section" style={{ backgroundColor: '#ffffff' }}>
51+
<section className="section" >
5252
<div className="container">
5353
<h2 className="section-title">Featured Works</h2>
5454
{works.length === 0 ? (

0 commit comments

Comments
 (0)