Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Hahlina committed Apr 21, 2023
0 parents commit ad3c493
Show file tree
Hide file tree
Showing 58 changed files with 4,838 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# 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?
*.env
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="./logo.svg" />
<title>Weather-app</title>
</head>
<body>
<header class="header">
</header>
<div class="search"></div>
<div class="container">
</div>
<script type="module" src="/main.js"></script>
</body>
</html>
7 changes: 7 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

import "./src/utils/refs"
import "./src/utils/routes"
import './src/components/Header/Header'
import "./style.scss"
import "./src/utils/firebase/getDataFromFirebase"
// import "./script/setEventOnHeart"
Loading

0 comments on commit ad3c493

Please sign in to comment.