. ├── eslint.config.mjs ├── jsconfig.json ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── ProgressLog.md ├── public │ ├── file.svg │ ├── globe.svg │ ├── next.svg │ ├── vercel.svg │ └── window.svg ├── README.md ├── src │ ├── app │ │ ├── components │ │ │ ├── DashboardLayout.jsx │ │ │ ├── DerivedValuesSection.jsx │ │ │ ├── DigitalClock.jsx │ │ │ ├── ImagerySection.jsx │ │ │ ├── MetarActionsBar.jsx │ │ │ ├── MeteorologicalNavbar.jsx │ │ │ ├── NavbarParts.jsx │ │ │ ├── ObservedValuesSection.jsx │ │ │ ├── ServerTimeWrapper.jsx │ │ │ ├── SynopValuesSection.jsx │ │ │ ├── test.jsx │ │ │ └── TrendForecastSection.jsx │ │ ├── config │ │ │ └── stations.js │ │ ├── context │ │ │ └── MetarContext.jsx │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── hooks │ │ │ └── useTime.js │ │ ├── layout.js │ │ └── page.js │ └── components │ └── test.jsx └── structure.md
9 directories, 33 files