Skip to content

Commit

Permalink
docs(seo): improve SEO, update documenatation and release message
Browse files Browse the repository at this point in the history
  • Loading branch information
saqibbedar committed Oct 7, 2024
1 parent 228c1da commit a1f293a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,15 @@ To begin, you should fork this repository so you have your own copy of the proje
2. Once the repository is forked, clone it to your local machine by running the following command in your terminal:

```bash
git clone https://github.com/your-username/Reactfolio
git clone hhttps://github.com/saqibbedar/Reactfolio.git
```

Replace `your-username` with your actual GitHub username.

## Step 2: Install Dependencies

Navigate to the project folder and install the required dependencies:

```bash
cd reactfolio
cd Reactfolio
npm install
```

Expand Down
7 changes: 6 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Reactfolio Release Notes 🚀

**Reactfolio** is a customizable portfolio template designed for developers looking to showcase their work with style and simplicity. This is the initial release of Reactfolio, setting the foundation for creating an impressive developer portfolio using modern technologies.
**Reactfolio** is a customizable portfolio template designed for developers looking to showcase their work with style and simplicity. This document outlines the release history and notable changes in Reactfolio.

## v1.1.0 - SEO Optimization and Documentation Update
- **SEO Meta Tags:** Added meta tags in HTML for improved search engine optimization.
- **Updated Documentation:** Revised and expanded the documentation for better user guidance.
- **Minor Bug Fixes:** Addressed small issues to enhance overall stability.

## v1.0.0 - Initial Release
- **React and Vite Setup:** Set up a modern development environment with React and Vite.
Expand Down
15 changes: 12 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</title>
<meta name="description" content="Professional portfolio showcasing my skills, projects, and experience as a developer." />
<meta name="keywords" content="portfolio, web developer, projects, skills, experience" />
<meta name="author" content="Your Name" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="canonical" href="https://your-portfolio-url.com" />
<title>Your Name | Web Developer Portfolio</title>
<meta property="og:title" content="Your Name | Web Developer Portfolio" />
<meta property="og:description" content="Professional portfolio showcasing my skills, projects, and experience as a developer." />
<meta property="og:image" content="https://your-portfolio-url.com/og-image.jpg" />
<meta property="og:url" content="https://your-portfolio-url.com" />
<meta name="twitter:card" content="summary_large_image" />
</head>
<body>
<div id="root"></div>
Expand Down

0 comments on commit a1f293a

Please sign in to comment.