Skip to content

Commit 4277299

Browse files
authored
Merge pull request #44 from LONECODER1/issue#35
Website added (#35)
2 parents 4b20b22 + 17e842f commit 4277299

22 files changed

Lines changed: 1232 additions & 0 deletions

Website/LandingPage/.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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?
58.5 MB
Binary file not shown.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import js from '@eslint/js'
2+
import globals from 'globals'
3+
import reactHooks from 'eslint-plugin-react-hooks'
4+
import reactRefresh from 'eslint-plugin-react-refresh'
5+
import { defineConfig, globalIgnores } from 'eslint/config'
6+
7+
export default defineConfig([
8+
globalIgnores(['dist']),
9+
{
10+
files: ['**/*.{js,jsx}'],
11+
extends: [
12+
js.configs.recommended,
13+
reactHooks.configs['recommended-latest'],
14+
reactRefresh.configs.vite,
15+
],
16+
languageOptions: {
17+
ecmaVersion: 2020,
18+
globals: globals.browser,
19+
parserOptions: {
20+
ecmaVersion: 'latest',
21+
ecmaFeatures: { jsx: true },
22+
sourceType: 'module',
23+
},
24+
},
25+
rules: {
26+
'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }],
27+
},
28+
},
29+
])

Website/LandingPage/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/assets/vaishfinalimg.jpg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>VAISH</title>
8+
</head>
9+
<body>
10+
<div id="root"></div>
11+
<script type="module" src="/src/main.jsx"></script>
12+
</body>
13+
</html>

Website/LandingPage/package.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"name": "landingpage",
3+
"homepage": "https://LONECODER1.github.io/Advanced-Discord-Bot",
4+
"private": true,
5+
"version": "0.0.0",
6+
"type": "module",
7+
"scripts": {
8+
"dev": "vite",
9+
"build": "vite build",
10+
"lint": "eslint .",
11+
"preview": "vite preview",
12+
"predeploy": "npm run build",
13+
"deploy":"gh-pages -d dist"
14+
},
15+
"dependencies": {
16+
"@tailwindcss/vite": "^4.1.11",
17+
"dotenv": "^17.2.1",
18+
"framer-motion": "^12.23.12",
19+
"gh-pages": "^6.3.0",
20+
"lucide-react": "^0.534.0",
21+
"react": "^19.1.0",
22+
"react-dom": "^19.1.0",
23+
"react-icons": "^5.5.0",
24+
"react-parallax-tilt": "^1.7.304",
25+
"react-router-dom": "^7.7.1",
26+
"react-simple-typewriter": "^5.0.1",
27+
"tailwindcss": "^4.1.11"
28+
},
29+
"devDependencies": {
30+
"@eslint/js": "^9.30.1",
31+
"@types/react": "^19.1.8",
32+
"@types/react-dom": "^19.1.6",
33+
"@vitejs/plugin-react": "^4.6.0",
34+
"eslint": "^9.30.1",
35+
"eslint-plugin-react-hooks": "^5.2.0",
36+
"eslint-plugin-react-refresh": "^0.4.20",
37+
"globals": "^16.3.0",
38+
"vite": "^7.0.4"
39+
}
40+
}
170 KB
Loading
134 KB
Loading

Website/LandingPage/snaps/Hero.png

462 KB
Loading
168 KB
Loading
111 KB
Loading

0 commit comments

Comments
 (0)