Skip to content

Commit

Permalink
init: initialize setup for employee management system
Browse files Browse the repository at this point in the history
  • Loading branch information
vedhatech002 committed Dec 28, 2023
1 parent 0c6071d commit a4991f5
Show file tree
Hide file tree
Showing 8 changed files with 2,277 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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?
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQYN4scLAOk6JcRBGzBZrq9N4zSHo6oOB_aycIUGb6FlF48fK8XsTr1a6AJZgMuYrduBeY&usqp=CAU"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Employee Management System</title>
<link rel="stylesheet" href="./src/css/main.css" />
</head>
<body>
<h1 class="text-red-500">hello world</h1>
<script type="module" src="./src/js/app.js"></script>
</body>
</html>
Loading

0 comments on commit a4991f5

Please sign in to comment.