diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx new file mode 100644 index 0000000..77c5931 --- /dev/null +++ b/src/app/faq/page.tsx @@ -0,0 +1,41 @@ +'use client'; + +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; + +const navItems = [ + { name: 'Home', id: '/' }, + { name: 'Features', id: '/#features' }, + { name: 'Dashboard', id: '/dashboard' }, + { name: 'Sign In', id: '/login' }, +]; + +export default function FAQPage() { + return ( + + +
+
+

Frequently Asked Questions

+

Find answers to common questions.

+
+
+
+ ); +}