diff --git a/frontend/src/components/hosted/FaqsPage.tsx b/frontend/src/components/hosted/FaqsPage.tsx
new file mode 100644
index 0000000..f413f0d
--- /dev/null
+++ b/frontend/src/components/hosted/FaqsPage.tsx
@@ -0,0 +1,14 @@
+import React from "react";
+import Footer from "./LandingPage/Footer";
+import FAQs from "./FAQs";
+
+const FaqsPage: React.FC = () => {
+ return (
+
+
+
+
+ );
+};
+
+export default FaqsPage;
diff --git a/frontend/src/main.tsx b/frontend/src/main.tsx
index 40077cb..6622c22 100644
--- a/frontend/src/main.tsx
+++ b/frontend/src/main.tsx
@@ -9,6 +9,7 @@ import { CLERK_PUBLISHABLE_KEY } from "./config.ts";
import "./index.css";
import PricingPage from "./components/hosted/PricingPage.tsx";
import CheckoutSuccessPage from "./components/hosted/CheckoutSuccessPage.tsx";
+import FaqsPage from "./components/hosted/FaqsPage.tsx";
ReactDOM.createRoot(document.getElementById("root")!).render(
@@ -24,6 +25,7 @@ ReactDOM.createRoot(document.getElementById("root")!).render(
} />
} />
} />
+ } />
} />