Skip to content

Commit

Permalink
chore: refactored folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalCodes committed Jan 7, 2024
1 parent 0f0beb5 commit cb78538
Show file tree
Hide file tree
Showing 43 changed files with 336 additions and 492 deletions.
63 changes: 63 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: 🐞 Bug
description: Report an issue to help improve the project.
title: "Bug: Write a small description here"
labels:
[
"status: todo ⏳",
"🐞 bug"
]
body:
- type: textarea
id: description
attributes:
label: Description
description: Write a detailed description of the issue that you faced.
validations:
required: true
- type: textarea
id: solution
attributes:
label: Proposed Solution
description: Write a solution which you think can fix this issue.
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: Please add screenshots/videos if applicable
validations:
required: false

- type: dropdown
id: browser
attributes:
label: "Browser 🥦"
description: "What browser are you using ?"
options:
- Google Chrome
- Brave
- Microsoft Edge
- Mozilla Firefox
- Safari
- Opera
- Other
validations:
required: true

- type: checkboxes
id: no-duplicate-issues
attributes:
label: "Checklist ✅"
options:
- label: "I checked and didn't find similar [issue](https://github.com/hack4bengal/s3/issues)"
required: true

- label: "I am willing to work on this issue (blank for no)."
required: false

- type: markdown
attributes:
value: |
In case of emergencies contact me on [Twitter](https://twitter.com/tamalCodes)
4 changes: 4 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
blank_issues_enabled: false
contact_links:
- name: 🙋🏾🙋🏼‍ Need help/emergencies ?
url: https://twitter.com/tamalCodes
56 changes: 56 additions & 0 deletions .github/ISSUE_TEMPLATE/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: 📄 Documentation issue
description: Found an issue in the documentation? You can use this one!
title: "Docs: Write a small description here"
labels:
[
"status: todo ⏳",
"📚 docs"
]
body:
- type: textarea
id: description
attributes:
label: Description
description: Write a detailed description of the changes you are proposing.
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: Please add screenshots/videos if applicable
validations:
required: false
- type: dropdown
id: browser
attributes:
label: "🥦 Browser"
description: "What browser are you using ?"
options:
- Google Chrome
- Brave
- Microsoft Edge
- Mozilla Firefox
- Safari
- Opera
- Other
validations:
required: true

- type: checkboxes
id: no-duplicate-issues
attributes:
label: "Checklist ✅"
options:
- label: "I checked and didn't find similar [issue](https://github.com/hack4bengal/s3/issues)"
required: true

- label: "I am willing to work on this issue (blank for no)"
required: false

- type: markdown
attributes:
value: |
In case of emergencies contact me on [Twitter](https://twitter.com/tamalCodes)
63 changes: 63 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: 💡 Feature Request
description: Have a new idea/feature ? Please suggest!
title: "Feature: Write a small description here"
labels:
[
"status: todo ⏳",
"💡 feature"
]
body:
- type: textarea
id: description
attributes:
label: Description
description: Write a detailed description of the feature you propose.
validations:
required: true
- type: textarea
id: solution
attributes:
label: Proposed Solution
description: What needs to be done to implement this feature?
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: Please add screenshots/videos if applicable
validations:
required: false

- type: dropdown
id: browser
attributes:
label: "🥦 Browser"
description: "What browser are you using ?"
options:
- Google Chrome
- Brave
- Microsoft Edge
- Mozilla Firefox
- Safari
- Opera
- Other
validations:
required: true

- type: checkboxes
id: no-duplicate-issues
attributes:
label: "Checklist ✅"
options:
- label: "I checked and didn't find similar [issue](https://github.com/hack4bengal/s3/issues)"
required: true

- label: "I am willing to work on this issue (blank for no)"
required: false

- type: markdown
attributes:
value: |
In case of emergencies contact me on [Twitter](https://twitter.com/tamalCodes)
47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/other.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Other
description: Use this for any other issues. Please do NOT create blank issues
title: "📂Other: Write a small description here"
labels:
[
"status: todo ⏳"
]
body:
- type: textarea
id: issuedescription
attributes:
label: What would you like to share?
description: Provide a clear and concise explanation of your issue.
validations:
required: true
- type: dropdown
id: browser
attributes:
label: "🥦 Browser"
description: "What browser are you using ?"
options:
- Google Chrome
- Brave
- Microsoft Edge
- Mozilla Firefox
- Safari
- Opera
- Other
validations:
required: true

- type: checkboxes
id: no-duplicate-issues
attributes:
label: "Checklist ✅"
options:
- label: "I checked and didn't find similar [issue](https://github.com/hack4bengal/s3/issues)"
required: true

- label: "I am willing to work on this issue (blank for no)"
required: false

- type: markdown
attributes:
value: |
In case of emergencies contact Tamal on [Twitter](https://twitter.com/tamalCodes)
4 changes: 2 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React from "react";
import { Route, BrowserRouter as Router, Routes } from "react-router-dom";
import Footer from "./components/footer/Footer";

import Brand from "./pages/brand/Brand";
import CodeofConduct from "./pages/coc/CodeofConduct";
import Discord from "./pages/discord/Discord";
import Home from "./pages/home/Home";

import Navbar from "./components/navbar/Navbar";
import { Footer, Navbar } from "./components/shared";
import "./styles/Globals.scss";

const App = () => {
Expand Down
36 changes: 0 additions & 36 deletions src/components/about/About.jsx

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import React from "react";
import Marquee from "react-fast-marquee";
import six from "../../assets/images/AboutImages/35.jpg";
import eight from "../../assets/images/AboutImages/43.jpg";
import five from "../../assets/images/AboutImages/5.jpg";
import four from "../../assets/images/AboutImages/7.jpg";
import three from "../../assets/images/AboutImages/five.jpg";
import two from "../../assets/images/AboutImages/four.jpg";
import seven from "../../assets/images/AboutImages/six.jpg";
import six from "../../../assets/images/AboutImages/35.jpg";
import eight from "../../../assets/images/AboutImages/43.jpg";
import five from "../../../assets/images/AboutImages/5.jpg";
import four from "../../../assets/images/AboutImages/7.jpg";
import three from "../../../assets/images/AboutImages/five.jpg";
import two from "../../../assets/images/AboutImages/four.jpg";
import seven from "../../../assets/images/AboutImages/six.jpg";

import "./About.scss";

const AboutTamal = ({ refs }) => {
const About = ({ refs }) => {
return (
<>
<div className="about__container" ref={refs}>
Expand Down Expand Up @@ -130,59 +130,9 @@ const AboutTamal = ({ refs }) => {
</Marquee>
</div>
</div>

{/* <div className="about__journey_parent">
<div className="about__journey">
<h2>Our Journey so far</h2>
<div className="about__metrics">
<div className="about__metrics_item">
<p>500+</p>
<span>Hackers</span>
</div>
<div className="about__metrics_item">
<p>50+</p>
<span>Partners</span>
</div>
<div className="about__metrics_item">
<p>36+</p>
<span>Hack hours</span>
</div>
<div className="about__metrics_item">
<p>85+</p>
<span>Events</span>
</div>
<div className="about__metrics_item">
<p>220+</p>
<span>Projects</span>
</div>
<div className="about__metrics_item">
<p>40+</p>
<span>Mentors</span>
</div>
</div>
</div>
<div className="about__marquee_container">
<Marquee
autoFill={true}
pauseOnHover={true}
className="about__marquee"
speed={50}
direction="left"
>
<img src={four} alt="" className="mq_img" />
<img src={five} alt="" className="mq_img" />
<img src={six} alt="" className="mq_img" />
</Marquee>
</div>
</div> */}
</div>
</>
);
};

export default AboutTamal;
export default About;
File renamed without changes.
Loading

0 comments on commit cb78538

Please sign in to comment.