diff --git a/src/app/(account-pages)/account-billing/page.tsx b/src/app/(account-pages)/account-billing/page.tsx new file mode 100644 index 0000000..706023d --- /dev/null +++ b/src/app/(account-pages)/account-billing/page.tsx @@ -0,0 +1,32 @@ +import React from "react"; +import ButtonPrimary from "@/shared/ButtonPrimary"; + +const AccountBilling = () => { + return ( +
+ {/* HEADING */} +

Payments & payouts

+
+
+ Payout methods +
+ + {` When you receive a payment for a reservation, we call that payment + to you a "payout." Our secure payment system supports several + payout methods, which can be set up below. Go to FAQ.`} +
+
+ To get paid, you need to set up a payout method Airbnb releases + payouts about 24 hours after a guest’s scheduled check-in time. The + time it takes for the funds to appear in your account depends on your + payout method. Learn more +
+
+ Add payout mothod +
+
+
+ ); +}; + +export default AccountBilling;