Skip to content

Latest commit

 

History

History
94 lines (93 loc) · 3.4 KB

File metadata and controls

94 lines (93 loc) · 3.4 KB

File Tree: Kilamate

├── 📁 public
│   ├── 🖼️ SEO.png
│   ├── 📄 _redirects
│   ├── 🖼️ android-chrome-192x192.png
│   ├── 🖼️ android-chrome-512x512.png
│   ├── 🖼️ apple-icon-114x114.png
│   ├── 🖼️ apple-icon-120x120.png
│   ├── 🖼️ apple-icon-144x144.png
│   ├── 🖼️ apple-icon-152x152.png
│   ├── 🖼️ apple-icon-180x180.png
│   ├── 🖼️ apple-icon-57x57.png
│   ├── 🖼️ apple-icon-60x60.png
│   ├── 🖼️ apple-icon-72x72.png
│   ├── 🖼️ apple-icon-76x76.png
│   ├── 🖼️ favicon-128x128.png
│   ├── 🖼️ favicon-16x16.png
│   ├── 🖼️ favicon-256x256.png
│   ├── 🖼️ favicon-32x32.png
│   ├── 🖼️ favicon-48x48.png
│   ├── 🖼️ favicon-64x64.png
│   ├── 🖼️ favicon-96x96.png
│   ├── 📄 favicon.ico
│   ├── 🖼️ logo.webp
│   ├── 🖼️ logo2.webp
│   ├── 📄 robots.txt
│   ├── 📄 site.webmanifest
│   └── ⚙️ sitemap.xml
├── 📁 src
│   ├── 📁 api
│   │   ├── 📄 config.ts
│   │   ├── 📄 types.ts
│   │   └── 📄 weather.ts
│   ├── 📁 components
│   │   ├── 📁 ui
│   │   │   ├── 📄 alert.tsx
│   │   │   ├── 📄 button.tsx
│   │   │   ├── 📄 card.tsx
│   │   │   ├── 📄 command.tsx
│   │   │   ├── 📄 dialog.tsx
│   │   │   ├── 📄 scroll-area.tsx
│   │   │   ├── 📄 skeleton.tsx
│   │   │   ├── 📄 sonner.tsx
│   │   │   └── 📄 tooltip.tsx
│   │   ├── 📄 air-pollution.tsx
│   │   ├── 📄 city-search.tsx
│   │   ├── 📄 current-weather.tsx
│   │   ├── 📄 favorite-button.tsx
│   │   ├── 📄 favorite-cities.tsx
│   │   ├── 📄 header.tsx
│   │   ├── 📄 hourly-temprature.tsx
│   │   ├── 📄 layout.tsx
│   │   ├── 📄 loading-skeleton.tsx
│   │   ├── 📄 theme-toggle.tsx
│   │   ├── 📄 weather-details.tsx
│   │   └── 📄 weather-forecast.tsx
│   ├── 📁 context
│   │   └── 📄 theme-provider.tsx
│   ├── 📁 hooks
│   │   ├── 📄 use-favorite.ts
│   │   ├── 📄 use-geolocation.ts
│   │   ├── 📄 use-local-storage.ts
│   │   ├── 📄 use-search-history.ts
│   │   └── 📄 use-weather.ts
│   ├── 📁 lib
│   │   └── 📄 utils.ts
│   ├── 📁 pages
│   │   ├── 📄 PageNotFound.tsx
│   │   ├── 📄 city-page.tsx
│   │   └── 📄 weather-dashboard.tsx
│   ├── 📄 App.tsx
│   ├── 🎨 index.css
│   ├── 📄 main.tsx
│   └── 📄 vite-env.d.ts
├── ⚙️ .dockerignore
├── ⚙️ .gitignore
├── 🐳 Dockerfile
├── 📝 README.md
├── ⚙️ components.json
├── ⚙️ docker-compose.yml
├── 📄 eslint.config.js
├── 🌐 index.html
├── ⚙️ package-lock.json
├── ⚙️ package.json
├── 📄 postcss.config.js
├── 📄 tailwind.config.js
├── ⚙️ tsconfig.app.json
├── ⚙️ tsconfig.json
├── ⚙️ tsconfig.node.json
└── 📄 vite.config.ts