Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
satyamkumarsingh095 committed Jan 13, 2025
0 parents commit 26a1a9d
Show file tree
Hide file tree
Showing 1,026 changed files with 345,926 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
REACT_APP_DEFAULTAUTH=fake
REACT_APP_APIKEY=
REACT_APP_AUTHDOMAIN=
REACT_APP_DATABASEURL=
REACT_APP_PROJECTID=
REACT_APP_STORAGEBUCKET=
REACT_APP_MESSAGINGSENDERID=
REACT_APP_APPID=
REACT_APP_MEASUREMENTID=
51 changes: 51 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:react/recommended",
"standard"
],
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"

},
"plugins": [
"react"
],
"rules": {
"no-multiple-empty-lines":["error", { "max": 1, "maxEOF": 1 }],
"no-console":"off",
"eol-last":"error",
"block-spacing":"error",
"vars-on-top":"error",
"no-useless-return":"error",
"no-useless-escape":"error",
"no-lone-blocks":"error",
"no-empty":"error",
"camelcase":"error",
"linebreak-style":"error",
"semi": "error",
"no-empty-function": "off",
"no-whitespace-before-property": "error",
"react/no-unescaped-entities": "off",
"no-unused-vars":"off",
"no-duplicate-imports":"error",
"no-empty-interface":"off",
"react/react-in-jsx-scope": "off",
"react/jsx-uses-react": "off",
"react/jsx-key":"off",
"react/prop-types":"off",
"eslint no-new": "off",
" eslint no-tabs": [ { "allowIndentationTabs": false }],
"eslint no-mixed-spaces-and-tabs":"off"




}
}
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

.codegpt
54 changes: 54 additions & 0 deletions Readme-Legal.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
============================================================================================================================================================================================================
⚖️ LEGAL AGREEMENT ⚖️
============================================================================================================================================================================================================
Project Developed By: SPRUKO TECHNOLOGIES PRIVATE LIMITED.

By accessing, downloading, installing, or using this Template/Application/Code (referred to as "Product"), you hereby agree to be bound by the terms and conditions of the applicable license agreement.
You must acquire a valid license to use this Product. The type of license you hold (regular or extended) determines your rights and obligations under this agreement.
Unauthorized use of this Product without a valid license is strictly prohibited.

Please take the time to carefully read and comprehend the terms and conditions of your license agreement. You can find the complete license agreements at the following URLs:

Standard License Agreement: https://themeforest.net/licenses/standard
Detailed License : https://spruko.com/licenses-details
License Faq's : https://spruko.com/licenses-details

If you have any questions or concerns regarding your license or the use of this Product, please contact our sales support team via email at sales@team.spruko.com.

By using this Template/Application/Code, you acknowledge that you have read this license agreement, understand its terms and conditions, and agree to be legally bound by them.

============================================================================================================================================================================================================
🌐 SPRUKO® SUPPORT
============================================================================================================================================================================================================
For assistance related to technical issues or questions, we recommend visiting our knowledge base to find solutions to common problems before opening a technical support request.
If you still require assistance, please submit a tech support request through the following link: https://support.spruko.com.

============================================================================================================================================================================================================
📧 PRE-SALES SUPPORT
============================================================================================================================================================================================================

If you have inquiries or questions regarding pre-sales support, please feel free to contact our sales support team at sales@team.spruko.com.

============================================================================================================================================================================================================
📜 Disclaimer:
============================================================================================================================================================================================================

All our items are subject to licensing agreements with Themeforest and Codecanyon. Please refer to the license details provided above; the information here is a summary only.
For full details, visit https://themeforest.net/licenses/standard.

============================================================================================================================================================================================================
© Copyright Notice:
============================================================================================================================================================================================================

This project is protected by copyright law and international treaties. Unauthorized use of a license, whether by YOU or YOUR CLIENT, as well as unauthorized reproduction or redistribution of this Product,
its software, or any of its components, may result in severe civil and criminal penalties. Such violations will be prosecuted to the fullest extent permitted by law.

Our Legal Team is prepared to issue takedown notices in accordance with the DMCA (Digital Millennium Copyright Act) to remove infringing content from the internet.
This includes contacting service providers such as website hosting companies, domain registrars, server companies, YouTube, payment gateway companies, and online advertising networks like Google's AdSense,
social ad networks, and search engines that display infringing content in their search results.

The DMCA also imposes penalties for circumventing access controls, whether or not copyright infringement has occurred. Furthermore, it heightens penalties for copyright infringement on the internet.

After sending a DMCA notice to your service providers, if your company fails to respond, your company's services may be suspended.

For more information about the Digital Millennium Copyright Act, please refer to https://www.copyright.gov/dmca/.
44 changes: 44 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import gulp from 'gulp';
import postcss from "gulp-postcss";
import autoprefixer from "autoprefixer";
import sourcemaps from 'gulp-sourcemaps';
import cssbeautify from "gulp-cssbeautify";
import beautify from 'gulp-beautify';
import browserSync from 'browser-sync';
import dartSass from 'sass';
import gulpSass from 'gulp-sass';
const sass = gulpSass(dartSass);



/******************* LTR ******************/

//_______ task for scss folder to css main style
gulp.task('watch', function() {
console.log('Command executed successfully compiling SCSS in assets.');
return gulp.src('src/assets/scss/**/*.scss')
.pipe(sourcemaps.init())
.pipe(sass())
.pipe(beautify.css({ indent_size: 4 }))
.pipe(sourcemaps.write(''))
.pipe(gulp.dest('src/assets/css'))
.pipe(browserSync.reload({
stream: true
}))
})

gulp.task('watch:build', () => {
if(exists.scripts) {
gulp.watch('${config.root}/${config.input.scripts}/**', gulp.series('scripts:build'))
}

if(exists.styles) {
gulp.watch('${config.root}/${config.input.styles}/**', gulp.series('scripts:build'))
}

if(exists.templates && exists.styles) {
gulp.watch('${config.root}/${config.input.templates}/**', gulp.series('templates', 'scripts:build'))
} else {
gulp.watch('${config.root}/${config.input.templates}/**', gulp.series('templates'))
}
})
21 changes: 21 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/assets/images/brand/logo.png" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords"
content="admin dashboard template, react javascript, react js, react dashboard, react bootstrap, admin panel template, template dashboard, javascript, admin panel, admin dashboard, react admin panel template, react template, react admin, admin panel react template" />
<title>Konnect</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
crossorigin="anonymous" id="bootstrapLink" />
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>

</html>
42 changes: 42 additions & 0 deletions login_backup.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// import React, { Fragment, lazy } from 'react'
// import ReactDOM from 'react-dom/client'
// import App from './layouts/App'
// import './index.scss'
// import { BrowserRouter, Route, Routes } from "react-router-dom";
// import { RouterData } from './commondata/routingdata';
// import { Provider } from 'react-redux';
// import { store } from './redux/store';
// import { Toaster } from 'react-hot-toast';
// import Loader from './layouts/layoutcomponents/loader';

// const Errorpage400 = lazy(() => import("./components/custompages/errorpages/400/400"));
// const Auth = lazy(() => import('./layouts/auth/auth'))
// const Authlogin = lazy(() => import('./layouts/auth/authlogin'))
// const Signup = lazy(() => import('./layouts/auth/signup'))
// const root = ReactDOM.createRoot(document.getElementById('root'))

// root.render(
// <>
// <Provider store={store}>
// <BrowserRouter>
// <Routes>
// <Route path={`${import.meta.env.BASE_URL}`} element={<Auth />} >
// <Route index element={<Authlogin />} />
// <Route path={`${import.meta.env.BASE_URL}auth/authlogin`} element={<Authlogin />} />
// <Route path={`${import.meta.env.BASE_URL}auth/signup`} element={<Signup />} />
// </Route>

// {RouterData.map((idx) => (
// <Route path={`${import.meta.env.BASE_URL}`} element={<App />} key={Math.random()}>
// <Route path={idx.path} element={idx.element} />
// </Route>
// ))};
// <Route path={`${import.meta.env.BASE_URL}custompages/errorpages/errorpage400`} element={<Errorpage400 />} />
// <Route path="*" element={<Errorpage400 />} />
// {/* <Route path={`${import.meta.env.BASE_URL}pages/themeStyle`} element={<Switcherlayout />} /> */}
// </Routes>
// </BrowserRouter>
// <Toaster />
// </Provider>
// </>
// )
Loading

0 comments on commit 26a1a9d

Please sign in to comment.