Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- import React from 'react';
- import Navbar from "@/components/_App/NavbarYamaha";
- import Footer from "@/components/_App/FooterYamaha";
- import PageBanner from '@/components/Common/PageBanner';
- import CheckoutContent from '@/components/Yamaha/Shop/Checkout';
- import * as Icon from 'react-feather';
-
- const Checkout = () => {
- return (
- <>
- <Navbar />
-
- <PageBanner pageTitle="Checkout" />
-
- <CheckoutContent />
-
- <Footer />
- </>
- )
- }
-
- export default Checkout;
|