# Feedback & Communication / Still Need Help Escalation pattern shown after FAQs have not resolved the citizen issue. Lists all available support channels (Phone, Live Chat, Email, Walk-in Centre) with primary action buttons and a "File a complaint" fallback. **Category:** Patterns **Storybook:** https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-feedback-communication-still-need-help--full-screen ## Pattern variants - Full Screen: https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-feedback-communication-still-need-help--full-screen ## When to use this pattern Use Feedback & Communication / Still Need Help when building citizen-facing flows that match the described government journey. Combine components such as cards, forms, tables, buttons, and status indicators as shown in Storybook. ## Framework setup ### HTML / CDN ```html ``` ### React ```bash npm install ux4g-web-components ``` ```jsx import 'ux4g-web-components/styles.css'; import 'ux4g-web-components/design-system'; ``` ### Angular Update `angular.json`: ```json { "styles": [ "node_modules/ux4g-web-components/styles/ux4g.css", "src/styles.css" ], "scripts": [ "node_modules/ux4g-web-components/dist/runtime/design-system.js" ] } ``` ## Code examples The snippets below are extracted from the Storybook canvas for Feedback & Communication / Still Need Help. Each example shows the rendered HTML, the equivalent React JSX, and the Angular template markup. ### 1. Full Screen — Still need help? HTML: ```html

Still need help?

Contact our support team — we are here to help.

phone
Phone Support 1800-XXX-XXXX · Toll free · Mon-Sat 9AM-6PM
forum
Live Chat Available now · Estimated wait 1-2 minutes
mail
Email Support Response within 2 working days
directions_walk
Walk-in Centre Visit your nearest Common Service Centre
``` React: ```jsx import React from 'react'; const FeedbackCommunicationStillNeedHelpExample1Demo = () => ( <>
{/* Help Centre & Contact Support Section */}
{/* Header */}

Still need help?

Contact our support team — we are here to help.

{/* Support Channels List */}
{/* Phone Support Card */}
phone
Phone Support 1800-XXX-XXXX · Toll free · Mon-Sat 9AM-6PM
{/* Live Chat Card */}
forum
Live Chat Available now · Estimated wait 1-2 minutes
{/* Email Support Card */}
mail
Email Support Response within 2 working days
{/* Walk-in Centre Card */}
directions_walk
Walk-in Centre Visit your nearest Common Service Centre
{/* Footer Text Link */}
File a complaint about this portal
{/* Footer Branding */}
Powered by -
); export default FeedbackCommunicationStillNeedHelpExample1Demo; ``` Angular: ```html

Still need help?

Contact our support team — we are here to help.

phone
Phone Support 1800-XXX-XXXX · Toll free · Mon-Sat 9AM-6PM
forum
Live Chat Available now · Estimated wait 1-2 minutes
mail
Email Support Response within 2 working days
directions_walk
Walk-in Centre Visit your nearest Common Service Centre
```