This commit is contained in:
eshanized
2025-01-07 13:04:56 +05:30
commit c0eea7c27f
4 changed files with 149 additions and 0 deletions

24
.gitignore vendored Normal file
View File

@@ -0,0 +1,24 @@
# 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?

14
index.html Normal file
View File

@@ -0,0 +1,14 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<script type="module" crossorigin src="/snigdhaos-tools/script.js"></script>
<link rel="stylesheet" crossorigin href="/snigdhaos-tools/style.css">
</head>
<body>
<div id="root"></div>
</body>
</html>

110
script.js Normal file

File diff suppressed because one or more lines are too long

1
style.css Normal file

File diff suppressed because one or more lines are too long