├── .gitignore ├── README.md ├── app ├── (pages) │ └── page.tsx ├── api │ └── forecast │ │ └── route.ts ├── globals.css └── layout.tsx ├── components ├── ForecastCard.tsx ├── ModeToggle.tsx ├── OpenMeteoMark.tsx └── ThemeRegistry.tsx ├── lib ├── cities.ts └── recommendation.ts ├── next.config.mjs ├── package.json ├── public ├── open-meteo.svg └── wait-circle.gif └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /app/(pages)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/app/(pages)/page.tsx -------------------------------------------------------------------------------- /app/api/forecast/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/app/api/forecast/route.ts -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /components/ForecastCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/components/ForecastCard.tsx -------------------------------------------------------------------------------- /components/ModeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/components/ModeToggle.tsx -------------------------------------------------------------------------------- /components/OpenMeteoMark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/components/OpenMeteoMark.tsx -------------------------------------------------------------------------------- /components/ThemeRegistry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/components/ThemeRegistry.tsx -------------------------------------------------------------------------------- /lib/cities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/lib/cities.ts -------------------------------------------------------------------------------- /lib/recommendation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/lib/recommendation.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/package.json -------------------------------------------------------------------------------- /public/open-meteo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/public/open-meteo.svg -------------------------------------------------------------------------------- /public/wait-circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/public/wait-circle.gif -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/Korea-Weather-Dashboard/HEAD/tsconfig.json --------------------------------------------------------------------------------