A minimal Astro.js app displaying a live ticking clock in 24-hour format, styled with Tailwind CSS.
- Live updates — ticks every second
- 24-hour format — HH:MM:SS
- CST timezone — America/Chicago (handles daylight saving automatically)
- Tailwind CSS — clean, minimal dark theme
- Responsive — scales from mobile to desktop
npm install
npm run devsrc/
├── components/
│ └── Clock.astro # Live clock component
├── layouts/
│ └── Layout.astro # Base HTML layout
├── pages/
│ └── index.astro # Home page
└── styles/
└── global.css # Tailwind imports
- Astro — static site generator with island architecture
- Tailwind CSS — utility-first CSS
MIT