# 🎨 Bio Site Customization Guide
## 📝 Basic Information
Update in `public/index.html`:
```html
<title>Your Name</title>
<link rel="icon" type="image/png" href="your-avatar-url">
<meta property="og:title" content="Your Title">
<meta property="og:description" content="Your Description">
<meta property="og:image" content="your-image-url">
<meta property="og:url" content="your-github-url">
Modify in src/components/Home.js
:
const greetings = [
"Hello",
"Bonjour",
];
Change in src/components/Home.js
:
const icons = [
{ Icon: FaPython, color: '#3776AB' },
{ Icon: IoLogoJavascript, color: '#F7DF1E' },
];
Edit in src/components/Navbar.js
:
<div className="nav-links">
<a href="your_url" target="_blank" rel="noopener noreferrer">
Your Link Text
</a>
</div>
Modify in src/App.css
:
body {
background-color: your_color;
color: your_text_color;
font-family: your_font;
}
Replace /song.mp3
with your preferred audio file in /public
.
Adjust breakpoints in src/components/*.css
files:
@media screen and (max-width: 768px) {
}
- Fork the repository
- Clone your fork
- Install dependencies:
npm install
- Make your changes
- Test locally:
npm start
- Deploy to hosting platform of choice