Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor project structure, code and add npm modules to format code and run website locally #4

Merged
merged 5 commits into from
Sep 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"singleQuote": true
}
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# TechCreators

A website to list tech twitter creators, across the world.

## Languages/Tools


<a href="https://developer.mozilla.org/en-US/docs/Glossary/HTML5" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/skills/html5-colored.svg" width="36" height="36" alt="HTML5" /></a>
<a href="https://www.w3.org/TR/CSS/#css" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/skills/css3-colored.svg" width="36" height="36" alt="CSS3" /></a>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/skills/javascript-colored.svg" width="36" height="36" alt="JavaScript" /></a>

## 👩🏽‍💻 Demo

Check out the website: [TechCreators](https://techcreators.vercel.app)
Expand All @@ -23,13 +24,12 @@ Before installation, please make sure you have already installed the following t

- Use these commands in your git bash to make a clone of the project in your pc.

### SSH [Github Docs](https://docs.github.com/en/authentication/connecting-to-github-with-ssh)
### SSH [Github Docs](https://docs.github.com/en/authentication/connecting-to-github-with-ssh)

```bash
$ git clone git@github.com:username/TechCreators
```


### GitHub CLI

```bash
Expand All @@ -42,7 +42,6 @@ $ gh repo clone username/TechCreators
$ git clone https://github.com/username/TechCreators
```


- Navigate to the project directory:

```bash
Expand Down Expand Up @@ -76,6 +75,14 @@ cd TechCreators
- And finally create a [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)!
- Great job! You did it!


## 🚀 Running locally
To run locally, just `cd` into the project and run the following commands to run node modules and serve the website locally.
```bash
npm i
npm run start
```

## 🛡️ License

TechCreators is licensed under the MIT License - see the [LICENSE](Licence) file for details.
Expand All @@ -89,4 +96,3 @@ Thank you so much all for spending your time to improve TechCreators. Keep shini
## 🙏🏽 Support

This project needs a star️ from you. Don't forget to leave a star 🌟

File renamed without changes
File renamed without changes
File renamed without changes
57 changes: 30 additions & 27 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,35 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TechCreators</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tech Creators — Best tech twitter creators, across the world.</title>
<link rel="stylesheet" href="styles/index.css" />
</head>
<body>
<nav>
<div></div>
<div class="input-div">
<img src="/Images/search.svg" alt="">
<input type="text" class="search-input" placeholder="Search for profile...">
</div>
<div></div>
<div class="input-div">
<img src="/assets/search.svg" alt="" />
<input
type="text"
class="search-input"
placeholder="Search for profile..."
/>
</div>

<div class="img-div">
<a class="twitter-img" href="https://twitter.com/pushkaraj2007">
<img src="/Images/twitter.png" alt="">
</a>
<div class="img-div">
<a class="twitter-img" href="https://twitter.com/pushkaraj2007">
<img src="/assets/twitter.png" alt="" />
</a>

<a href="https://github.com/pushkaraj2007/TechCreators">
<img class="github-img" src="/Images/github.png" alt="">
</a>
</div>
<a href="https://github.com/pushkaraj2007/TechCreators">
<img class="github-img" src="/assets/github.png" alt="" />
</a>
</div>
</nav>
<div class="container">
<div class="all-profiles-div">

</div>
<div class="container">
<div class="all-profiles-div"></div>
</div>
</body>
<script src="script.js"></script>
</html>
</body>
<script src="scripts/app.js"></script>
</html>