Initial commit - QR Master application
This commit is contained in:
15
src/app/(marketing)/faq/page.tsx
Normal file
15
src/app/(marketing)/faq/page.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
'use client';
|
||||
|
||||
import React from 'react';
|
||||
import { FAQ } from '@/components/marketing/FAQ';
|
||||
import { useTranslation } from '@/hooks/useTranslation';
|
||||
|
||||
export default function FAQPage() {
|
||||
const { t } = useTranslation();
|
||||
|
||||
return (
|
||||
<div className="py-20">
|
||||
<FAQ t={t} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user