A friend needs a website for his construction company. It would mainly showcase photos, videos, and descriptions of different materials, along with a simple contact form that stores customer details such as their name, email address, and a few other fields in a small JSON-like record. I last used Angular and Firestore in 2022 and had a good experience, so I'm wondering whether this stack is still actively supported and practical today. Would it be a sensible choice, or would a simpler setup be better for this kind of site?
4 Answers
Firebase and Firestore are still widely used and work smoothly with modern frontend frameworks. The free tier may also be enough for a small business site, depending on image storage, traffic, and how many contact submissions it receives.
The stack is supported, but it may be more technology than this project needs. If the website is mostly static content plus a contact form, a static site with a managed form service or lightweight hosted database could be simpler to maintain. Angular makes more sense if you want richer interactions or already prefer working with it.
It should work well, especially if you already know Angular. Just take the security rules seriously: validate the submitted fields, restrict who can read the contact records, and avoid leaving the database publicly readable or writable.
Yes, Angular and Firestore are still a solid combination. For a small site with a gallery and contact form, Angular can handle the interactive parts while Firestore stores the submissions without requiring you to build a traditional backend.

Related Questions
How To: Running Codex CLI on Windows with Azure OpenAI
Set Wordpress Featured Image Using Javascript
How To Fix PHP Random Being The Same
Why no WebP Support with Wordpress
Replace Wordpress Cron With Linux Cron
Customize Yoast Canonical URL Programmatically