Skip to content

Commit a3a4632

Browse files
committed
DevDisplay Community
0 parents  commit a3a4632

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+10363
-0
lines changed

.eslintrc.cjs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module.exports = {
2+
root: true,
3+
env: { browser: true, es2020: true },
4+
extends: [
5+
'eslint:recommended',
6+
'plugin:@typescript-eslint/recommended',
7+
'plugin:react-hooks/recommended',
8+
],
9+
ignorePatterns: ['dist', '.eslintrc.cjs'],
10+
parser: '@typescript-eslint/parser',
11+
plugins: ['react-refresh'],
12+
rules: {
13+
'react-refresh/only-export-components': [
14+
'warn',
15+
{ allowConstantExport: true },
16+
],
17+
},
18+
}

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
25+
.vercel

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Ashutosh Singh
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<div align="center">
2+
<img src="/public/assets/DevDisplayLOGO/ICON.png" width="50" alt="Enigma Icon">
3+
<h1>DevDisplay</h1>
4+
<p>DevDisplay Community Website</p>
5+
<p>
6+
<img src="https://img.shields.io/badge/shadcn/ui-000000?style=for-the-badge&logo=shadcn/ui&logoColor=white" alt="shadcn/ui">
7+
<img src="https://img.shields.io/badge/react-%2320232a.svg?style=for-the-badge&logo=react&logoColor=%2361DAFB" alt="React">
8+
<img src="https://img.shields.io/badge/vite-%23646CFF.svg?style=for-the-badge&logo=vite&logoColor=white" alt="Vite">
9+
<img src="https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge&logo=typescript&logoColor=white" alt="TypeScript">
10+
<img src="https://img.shields.io/badge/vercel-%23000000.svg?style=for-the-badge&logo=vercel&logoColor=white" alt="Vercel">
11+
</p>
12+
</div>
13+
14+
15+
<a href="https://www.devdisplay.tech" target="_blank">Visit the site</a>
16+
17+
## Contents
18+
- [How to install](#how-to-install)
19+
- [How to contribute](#how-to-contribute)
20+
21+
## How to install
22+
23+
1. Clone this repository:
24+
25+
```bash
26+
git clone https://github.com/codeaashu/DevDisplay-Community-Website.git
27+
```
28+
29+
2. Go into project
30+
31+
```bash
32+
cd DevDisplay-Community-Website
33+
```
34+
35+
3. Install dependencies
36+
37+
```bash
38+
npm install
39+
```
40+
41+
4. Run project
42+
43+
```bash
44+
npm run dev
45+
```
46+
47+
## How to contribute
48+
1. Switch to the `dev` branch.
49+
50+
2. Fork the repository.
51+
52+
3. Make changes to the forked repository.
53+
54+
4. Submit a pull request, and ensure Vecel's preview deployment is passing. Here's a resource on how to write a <a href="https://github.blog/developer-skills/github/how-to-write-the-perfect-pull-request/" target="_blank">perfect pull request</a>. Contributions from this repo will count towards Hacktoberfest.
55+
56+
**Note:** If you wish to add new pages, please add them as new routes under a folder.

components.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "default",
4+
"rsc": false,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "tailwind.config.js",
8+
"css": "src/app.css",
9+
"baseColor": "slate",
10+
"cssVariables": true
11+
},
12+
"aliases": {
13+
"components": "@/components",
14+
"utils": "@/lib/utils"
15+
}
16+
}

index.html

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link
6+
rel="icon"
7+
type="image/svg+xml"
8+
href="/assets/DevDisplayLOGO/LOGO.png"
9+
/>
10+
<!-- href="/vite.svg" -->
11+
<meta
12+
name="viewport"
13+
content="width=device-width, initial-scale=1.0"
14+
/>
15+
16+
<!-- Primary Meta Tags -->
17+
<title>DevDisplay</title>
18+
<meta
19+
name="title"
20+
content="DevDisplay"
21+
/>
22+
<meta
23+
name="description"
24+
content="Global Open Source Tech Community and Organization"
25+
/>
26+
<!-- Open Graph / Facebook -->
27+
<meta
28+
property="og:type"
29+
content="website"
30+
/>
31+
<meta
32+
property="og:url"
33+
content="https://github.com/codeaashu/DevDisplay-Community-Website.git"
34+
/>
35+
<meta
36+
property="og:title"
37+
content="DevDisplay"
38+
/>
39+
<meta
40+
property="og:description"
41+
content="A global open-source organization that brings together all your tech needs in one place."
42+
/>
43+
<meta
44+
property="og:image"
45+
content="/assets/DevDisplayLOGO/BgLOGO.png"
46+
/>
47+
48+
<!-- Twitter -->
49+
<meta
50+
name="twitter:card"
51+
content="summary_large_image"
52+
/>
53+
54+
<meta
55+
name="twitter:url"
56+
content="https://github.com/codeaashu/DevDisplay-Community-Website.git"
57+
/>
58+
<meta
59+
name="twitter:title"
60+
content="DevDisplay"
61+
/>
62+
<meta
63+
name="twitter:description"
64+
content="A global open-source organization that brings together all your tech needs in one place."
65+
/>
66+
<meta
67+
name="twitter:image"
68+
content="/assets/DevDisplayLOGO/LOGO.png"
69+
/>
70+
</head>
71+
<body>
72+
<div id="root"></div>
73+
<script
74+
type="module"
75+
src="/src/main.tsx"
76+
></script>
77+
</body>
78+
</html>

0 commit comments

Comments
 (0)