import { Button } from '@/registry/default/ui/base-button';
import {
Dialog,
DialogClose,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
} from '@/registry/default/ui/base-dialog';
import { ScrollArea } from '@/registry/default/ui/base-scroll-area';
export default function BaseDialogFullscreen() {
const faqSections = [
{
title: 'Account Management',
content:
'Navigate to the registration page, provide the required information, and verify your email address. You can sign up using your email or through social media platforms.',
},
{
title: 'Payment and Billing',
content:
'We accept all major credit cards, PayPal, and bank transfers. If you face issues, check your payment details or contact our support team.',
},
{
title: 'Subscription Plans',
content:
'Choose a plan that fits your needs. Upgrade, downgrade, or cancel at any time from the subscription settings page in your account.',
},
{
title: 'Technical Support',
content:
'Our support team is available 24/7 via live chat or email. Check our Help Center for troubleshooting guides and tips.',
},
{
title: 'Privacy and Security',
content:
'Your data is encrypted and stored securely. We comply with GDPR and other privacy regulations to protect your information.',
},
{
title: 'Feature Requests',
content:
'Got ideas for new features? Submit your request via the feedback form in the app or reach out to us directly.',
},
{
title: 'Refund Policy',
content:
"If you're not satisfied with your purchase, you can request a refund within 14 days. Please review our refund policy for more details.",
},
{
title: 'Mobile App Support',
content:
'Our platform is fully compatible with iOS and Android devices. Download our app from the App Store or Google Play.',
},
{
title: 'User Roles and Permissions',
content:
'Admins can assign roles and permissions to other users. These roles determine the level of access within the platform.',
},
{
title: 'Privacy and Security',
content:
'Your data is encrypted and stored securely. We comply with GDPR and other privacy regulations to protect your information.',
},
{
title: 'Feature Requests',
content:
'Got ideas for new features? Submit your request via the feedback form in the app or reach out to us directly.',
},
{
title: 'Refund Policy',
content:
"If you're not satisfied with your purchase, you can request a refund within 14 days. Please review our refund policy for more details.",
},
{
title: 'Mobile App Support',
content:
'Our platform is fully compatible with iOS and Android devices. Download our app from the App Store or Google Play.',
},
{
title: 'User Roles and Permissions',
content:
'Admins can assign roles and permissions to other users. These roles determine the level of access within the platform.',
},
{
title: 'Privacy and Security',
content:
'Your data is encrypted and stored securely. We comply with GDPR and other privacy regulations to protect your information.',
},
{
title: 'Feature Requests',
content:
'Got ideas for new features? Submit your request via the feedback form in the app or reach out to us directly.',
},
{
title: 'Refund Policy',
content:
"If you're not satisfied with your purchase, you can request a refund within 14 days. Please review our refund policy for more details.",
},
{
title: 'Mobile App Support',
content:
'Our platform is fully compatible with iOS and Android devices. Download our app from the App Store or Google Play.',
},
{
title: 'User Roles and Permissions',
content:
'Admins can assign roles and permissions to other users. These roles determine the level of access within the platform.',
},
{
title: 'Privacy and Security',
content:
'Your data is encrypted and stored securely. We comply with GDPR and other privacy regulations to protect your information.',
},
{
title: 'Feature Requests',
content:
'Got ideas for new features? Submit your request via the feedback form in the app or reach out to us directly.',
},
{
title: 'Refund Policy',
content:
"If you're not satisfied with your purchase, you can request a refund within 14 days. Please review our refund policy for more details.",
},
{
title: 'Mobile App Support',
content:
'Our platform is fully compatible with iOS and Android devices. Download our app from the App Store or Google Play.',
},
{
title: 'User Roles and Permissions',
content:
'Admins can assign roles and permissions to other users. These roles determine the level of access within the platform.',
},
{
title: 'Privacy and Security',
content:
'Your data is encrypted and stored securely. We comply with GDPR and other privacy regulations to protect your information.',
},
{
title: 'Feature Requests',
content:
'Got ideas for new features? Submit your request via the feedback form in the app or reach out to us directly.',
},
{
title: 'Refund Policy',
content:
"If you're not satisfied with your purchase, you can request a refund within 14 days. Please review our refund policy for more details.",
},
{
title: 'Mobile App Support',
content:
'Our platform is fully compatible with iOS and Android devices. Download our app from the App Store or Google Play.',
},
{
title: 'User Roles and Permissions',
content:
'Admins can assign roles and permissions to other users. These roles determine the level of access within the platform.',
},
];
return (
<Dialog>
<DialogTrigger render={<Button variant="outline" />}>Show Dialog</DialogTrigger>
<DialogContent fullscreen={true}>
<DialogHeader>
<DialogTitle>Frequently Asked Questions(FAQ)</DialogTitle>
<DialogDescription></DialogDescription>
</DialogHeader>
<ScrollArea className="grow h-[calc(100vh-13rem)] text-sm my-2.5 pe-4 -me-4">
<div className="space-y-4 [&_h3]:font-semibold [&_h3]:text-foreground">
{faqSections.map((faq, index) => (
<div key={index} className="text-accent-foreground space-y-1">
<h3>{faq.title}</h3>
<p>{faq.content}</p>
</div>
))}
</div>
</ScrollArea>
<DialogFooter>
<DialogClose>Cancel</DialogClose>
<Button type="submit">Submit</Button>
</DialogFooter>
</DialogContent>
</Dialog>
);
}