add an FAQs page

This commit is contained in:
Abi Raja 2024-07-30 13:19:49 -04:00
parent 92f2933f0a
commit f0fef4f5e3
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,14 @@
import React from "react";
import Footer from "./LandingPage/Footer";
import FAQs from "./FAQs";
const FaqsPage: React.FC = () => {
return (
<div className="container mx-auto px-4 py-8">
<FAQs />
<Footer />
</div>
);
};
export default FaqsPage;

View File

@ -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(
<React.StrictMode>
@ -24,6 +25,7 @@ ReactDOM.createRoot(document.getElementById("root")!).render(
<Route path="/" element={<AppContainer />} />
<Route path="/evals" element={<EvalsPage />} />
<Route path="/pricing" element={<PricingPage />} />
<Route path="/faqs" element={<FaqsPage />} />
<Route path="/checkout-success" element={<CheckoutSuccessPage />} />
</Routes>
</Router>