diff --git a/app/(main)/ecommerce/checkout-form/page.tsx b/app/(main)/ecommerce/checkout-form/page.tsx deleted file mode 100644 index 119a7f4..0000000 --- a/app/(main)/ecommerce/checkout-form/page.tsx +++ /dev/null @@ -1,146 +0,0 @@ -'use client'; -import { Button } from 'primereact/button'; -import { Checkbox } from 'primereact/checkbox'; -import { Dropdown } from 'primereact/dropdown'; -import { InputNumber } from 'primereact/inputnumber'; -import { InputText } from 'primereact/inputtext'; -import React, { useState } from 'react'; - -function CheckoutForm() { - const [value, setValue] = useState(''); - const [quantities] = useState([1, 1, 1]); - const [checked, setChecked] = useState(true); - const [checked2, setChecked2] = useState(true); - const [selectedCity, setSelectedCity] = useState(null); - const [cities] = useState([ - { name: 'New York', code: 'NY' }, - { name: 'Rome', code: 'RM' }, - { name: 'London', code: 'LDN' }, - { name: 'Istanbul', code: 'IST' }, - { name: 'Paris', code: 'PRS' } - ]); - - return ( -
-
- No additional duties or taxes.
-