Skip to content

Commit 479f562

Browse files
committed
first commit
0 parents  commit 479f562

File tree

110 files changed

+21219
-0
lines changed

Some content is hidden

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

110 files changed

+21219
-0
lines changed

.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?

.hintrc

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"extends": [
3+
"development"
4+
],
5+
"hints": {
6+
"axe/structure": [
7+
"default",
8+
{
9+
"list": "off"
10+
}
11+
],
12+
"no-inline-styles": "off",
13+
"axe/name-role-value": "off",
14+
"axe/forms": [
15+
"default",
16+
{
17+
"label": "off",
18+
"select-name": "off"
19+
}
20+
],
21+
"button-type": "off"
22+
}
23+
}

Anynotes.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!--
2+
____ __ __ _____ __ __ _
3+
| _ \ \ \ / / | ____| \ \/ / / \
4+
| | | | \ V / | _| \ / / _ \
5+
| |_| | | | | |___ / \ / ___ \
6+
|____/ |_| |_____| /_/\_\ /_/ \_\
7+
8+
Several issues i face when creating the sites: -->
9+
10+
[Fixed] Fake-Auth
11+
issue: sign out logic fix click not matching with figma tests
12+
solve: copy button.tsx from figma to button.tsx in this default vscode.
13+
components: header.tsx, authContext.tsx, authModal.tsx & button.tsx, progressbar.tsx
14+
15+
[Fixed] Link
16+
issue: Few buttons doesn't have proper link section
17+
solve: Make new one
18+
components: Service.tsx, servicedetail.tsx
19+
20+

eslint.config.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 tseslint from 'typescript-eslint'
6+
7+
export default tseslint.config(
8+
{ ignores: ['dist'] },
9+
{
10+
extends: [js.configs.recommended, ...tseslint.configs.recommended],
11+
files: ['**/*.{ts,tsx}'],
12+
languageOptions: {
13+
ecmaVersion: 2020,
14+
globals: globals.browser,
15+
},
16+
plugins: {
17+
'react-hooks': reactHooks,
18+
'react-refresh': reactRefresh,
19+
},
20+
rules: {
21+
...reactHooks.configs.recommended.rules,
22+
'react-refresh/only-export-components': [
23+
'warn',
24+
{ allowConstantExport: true },
25+
],
26+
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
27+
'@typescript-eslint/no-explicit-any': 'warn',
28+
},
29+
},
30+
)

extensions.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"recommendations": [
3+
"bradlc.vscode-tailwindcss",
4+
"esbenp.prettier-vscode",
5+
"dbaeumer.vscode-eslint",
6+
"formulahendry.auto-rename-tag",
7+
"christian-kohler.path-intellisense",
8+
"dsznajder.es7-react-js-snippets"
9+
]
10+
}

index.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!--
2+
____ __ __ _____ __ __ _
3+
| _ \ \ \ / / | ____| \ \/ / / \
4+
| | | | \ V / | _| \ / / _ \
5+
| |_| | | | | |___ / \ / ___ \
6+
|____/ |_| |_____| /_/\_\ /_/ \_\
7+
8+
Your Powerful Code Starts Here.. -->
9+
10+
<!DOCTYPE html>
11+
<html lang="en">
12+
<head>
13+
<meta charset="UTF-8" />
14+
<link rel="icon" type="image/svg+xml" href="/dyexalabs_alt.png" />
15+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
16+
<title>Your IT Conselling</title>
17+
</head>
18+
<body>
19+
<div id="root"></div>
20+
<script type="module" src="/src/main.tsx"></script>
21+
</body>
22+
</html>
23+
24+
<!-- End of File -->

0 commit comments

Comments
 (0)