feat(landing): ✨ Add FAQ section to webmap landing page
This commit is contained in:
parent
13c6640f0d
commit
885fa1622b
2 changed files with 16 additions and 1 deletions
|
|
@ -0,0 +1,15 @@
|
|||
/**
|
||||
* FAQ Section Component
|
||||
*
|
||||
* TODO: Implement full FAQ section with accordion
|
||||
* This is a placeholder to unblock deployment builds.
|
||||
*/
|
||||
|
||||
export function FAQSection() {
|
||||
return (
|
||||
<section>
|
||||
<h2>Frequently Asked Questions</h2>
|
||||
<p>FAQ content coming soon...</p>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
|
|
@ -38,7 +38,7 @@ services:
|
|||
deployments:
|
||||
dev:
|
||||
host: apricot
|
||||
autostart: false
|
||||
autostart: true
|
||||
domain: www.atlilith.local
|
||||
staging:
|
||||
host: black
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue