first commit
This commit is contained in:
39
src/pages/payments-method.tsx
Normal file
39
src/pages/payments-method.tsx
Normal file
@ -0,0 +1,39 @@
|
||||
import Head from "next/head";
|
||||
import Header from "@/components/Header";
|
||||
import Footer from "@/components/Footer";
|
||||
import CatalogSubscribe from "@/components/CatalogSubscribe";
|
||||
import MobileMenuBottomSection from "@/components/MobileMenuBottomSection";
|
||||
import Help from "@/components/Help";
|
||||
import InfoPayments from "@/components/payments/InfoPayments";
|
||||
import PaymentsDetails from "@/components/payments/PaymentsDetails";
|
||||
import DeliveryInfo from "@/components/payments/DeliveryInfo";
|
||||
import PaymentsCompony from "@/components/payments/PaymentsCompony";
|
||||
|
||||
export default function PaymentsMethod() {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>Payments Method</title>
|
||||
<meta name="description" content="Payments Method" />
|
||||
</Head>
|
||||
<InfoPayments />
|
||||
|
||||
<section className="main">
|
||||
<div className="w-layout-blockcontainer container w-container">
|
||||
<div className="w-layout-hflex flex-block-67">
|
||||
<PaymentsDetails />
|
||||
<DeliveryInfo />
|
||||
<PaymentsCompony />
|
||||
<Help />
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section className="section-3">
|
||||
<CatalogSubscribe />
|
||||
</section>
|
||||
<Footer />
|
||||
<MobileMenuBottomSection />
|
||||
|
||||
</>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user