diff --git a/src/app/Faq/page.tsx b/src/app/Faq/page.tsx new file mode 100644 index 0000000..df86d06 --- /dev/null +++ b/src/app/Faq/page.tsx @@ -0,0 +1,9 @@ +import FAQ from '@/sections/FAQ'; + +export default function Home() { + return ( +
+ +
+ ); +} diff --git a/src/app/globals.css b/src/app/globals.css index f65a441..47a6b7e 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -20,4 +20,9 @@ body { display: flex; flex-direction: column; align-items: center; + margin: 0 var(--side-padding); + + @media screen and (max-width: 768px) { + margin: 0 var(--side-padding-small); + } } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 93323c4..98f296a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,6 +2,7 @@ import Footer from '@/sections/footer'; import './globals.css'; import type { Metadata } from 'next'; import { DM_Sans } from 'next/font/google'; +import Navbar from '@/sections/navbar'; const dmSans = DM_Sans({ subsets: ['latin'] }); @@ -12,8 +13,11 @@ export const metadata: Metadata = { export default function RootLayout({ children }: { children: React.ReactNode }) { return ( - - {children} + + + + {children} +