Initial commit
This commit is contained in:
22
src/templates/PricingPage/index.tsx
Normal file
22
src/templates/PricingPage/index.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client";
|
||||
|
||||
import Layout from "@/components/Layout";
|
||||
import Pricing from "./Pricing";
|
||||
import Comparison from "./Comparison";
|
||||
import Community from "./Community";
|
||||
import Join from "@/components/Join";
|
||||
import Faq from "./Faq";
|
||||
|
||||
const PricingPage = () => {
|
||||
return (
|
||||
<Layout>
|
||||
<Pricing />
|
||||
<Comparison />
|
||||
<Community />
|
||||
<Faq />
|
||||
<Join />
|
||||
</Layout>
|
||||
);
|
||||
};
|
||||
|
||||
export default PricingPage;
|
||||
Reference in New Issue
Block a user