Skip to content

Commit

Permalink
Merge pull request #244 from JiyaGupta-cs/clone
Browse files Browse the repository at this point in the history
feat: Added LinkedIn Clone
  • Loading branch information
Kritika30032002 authored Feb 11, 2024
2 parents 6b3f15f + 72ba292 commit 1649365
Show file tree
Hide file tree
Showing 64 changed files with 13,834 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Linkedin-clone/.firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
404.html,1677956389330,daa499dd96d8229e73235345702ba32f0793f0c8e5c0d30e40e37a5872be57aa
vite.svg,1675669638367,59ec4b6085a0cb1bf712a5e48dd5f35b08e34830d49c2026c18241be04e05d5a
index.html,1677959444529,6cc23cb4c31261f47e3da8ad7c836f3c4225f527ee46ba89167c073010c3e605
assets/index-738cf444.css,1677959444529,caae3544d9ac5d202a3867858e84eb4b66a8311ec436c27d675633a8f50d4d20
assets/linkedinLogo-412a7a29.png,1677959444529,be9cdcfd85ba97a250fdf3772952753ddef2508aa5c9071636e2fb4bd2becd90
assets/index-28c6a808.js,1677959444530,3194428b72113e1064cd1759e4ffdc201ab5b0ba5b3d3d5146c0686a85c814ce
5 changes: 5 additions & 0 deletions Linkedin-clone/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "linkedin-clone-a077e"
}
}
26 changes: 26 additions & 0 deletions Linkedin-clone/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
firebaseConfig.js*

node_modules
dist

dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
45 changes: 45 additions & 0 deletions Linkedin-clone/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Features

1. Authentication
2. Start a Post
3. Update a Post
4. Delete a Post
5. Add Connections
6. Like and Comment on a Post
7. Update Profile
8. See Other Profiles
9. Add a Profile Picture
10. Add Post Images
11. Search For Other Users

#### Tech Stack
- **Frontend:** React.js
- **Dependencies:** npm, node, firebase,

#### Demo
Check out the demo of the LinkedIn clone on YouTube: [LinkedIn Clone Demo](https://youtu.be/nSF2D21JgDw)

### How to Run

1. **Clone the Repository:**
```bash
git clone https://github.com/Kritika30032002/ReactCreations.git
```

2. **Navigate to the Project Directory:**
```bash
cd ReactCreations\Github_Clone
```

3. **Install Dependencies:**
```bash
npm install
```

4. **Start the Server on Port 3000:**
```bash
npm start
```

5. **Access the Server:**
Once the server is running, you can access it in your web browser by navigating to `http://localhost:3000`.
10 changes: 10 additions & 0 deletions Linkedin-clone/firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"hosting": {
"public": "dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
}
16 changes: 16 additions & 0 deletions Linkedin-clone/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!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>Linkedin Clone!</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>

</html>
Loading

0 comments on commit 1649365

Please sign in to comment.