30 lines
930 B
TypeScript
30 lines
930 B
TypeScript
// app/faq/page.tsx
|
|
|
|
'use client';
|
|
|
|
import * as React from 'react';
|
|
|
|
import { Navbar } from '@workspace/ui/components/layout';
|
|
import { Footer } from '@workspace/ui/components/layout';
|
|
import { Container, Section } from '@workspace/ui/components/layout';
|
|
import { FAQAccordion } from '@workspace/ui/components/interactive';
|
|
|
|
export default function FAQPage() {
|
|
return (
|
|
<div className="flex flex-col min-h-screen">
|
|
<Navbar />
|
|
<Section className="flex-grow">
|
|
<Container>
|
|
<div className="text-center mb-12">
|
|
<h1 className="text-3xl md:text-4xl font-bold">Frequently Asked Questions</h1>
|
|
<p className="mt-4 text-muted-foreground max-w-2xl mx-auto">
|
|
Answers to common questions about Fortura's approach, process, and services.
|
|
</p>
|
|
</div>
|
|
<FAQAccordion />
|
|
</Container>
|
|
</Section>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
} |