classify web
This commit is contained in:
26
components/PagesComponent/StaticPages/RefundPolicy.jsx
Normal file
26
components/PagesComponent/StaticPages/RefundPolicy.jsx
Normal file
@@ -0,0 +1,26 @@
|
||||
"use client";
|
||||
|
||||
import BreadCrumb from "@/components/BreadCrumb/BreadCrumb";
|
||||
import Layout from "@/components/Layout/Layout";
|
||||
import { settingsData } from "@/redux/reducer/settingSlice";
|
||||
import { t } from "@/utils";
|
||||
import parse from "html-react-parser";
|
||||
import { useSelector } from "react-redux";
|
||||
|
||||
const RefundPolicy = () => {
|
||||
const settings = useSelector(settingsData);
|
||||
const privacy = settings?.refund_policy;
|
||||
|
||||
return (
|
||||
<Layout>
|
||||
<BreadCrumb title2={t("refundPolicy")} />
|
||||
<div className="container">
|
||||
<div className="max-w-full py-7 prose lg:prose-lg">
|
||||
{parse(privacy || "")}
|
||||
</div>
|
||||
</div>
|
||||
</Layout>
|
||||
);
|
||||
};
|
||||
|
||||
export default RefundPolicy;
|
||||
Reference in New Issue
Block a user