From 03ff978f7b22cf2db8093a02c1717bf75b053c1c Mon Sep 17 00:00:00 2001 From: supriyahatele Date: Wed, 21 Feb 2024 21:42:47 +0530 Subject: [PATCH] day2 --- index.html | 1 + src/App.jsx | 5 ++- src/components/ConfirmPage.jsx | 61 ++++++++++++++++++++++++++++++++++ 3 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 src/components/ConfirmPage.jsx diff --git a/index.html b/index.html index 0c589ec..88a6d26 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,7 @@ Vite + React +
diff --git a/src/App.jsx b/src/App.jsx index ba24e66..3392368 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,13 +1,16 @@ import './App.css' +import ConfirmPage from './components/ConfirmPage' function App() { return (
- +
) } export default App + + diff --git a/src/components/ConfirmPage.jsx b/src/components/ConfirmPage.jsx new file mode 100644 index 0000000..507735d --- /dev/null +++ b/src/components/ConfirmPage.jsx @@ -0,0 +1,61 @@ +import React from 'react' + +function ConfirmPage() { + return ( +
+

navbar

+
+
+ + Confirm and pay +
+

Your trip

+
+

Dates

+

4-9 Mar

+
+
+
+
+
+

Pay with

+
+ mstcrd + + + +
+ + +
+
+

Required for your trip

+
+

Phone nmber

+ +
+

Add and confirm your phone number to get trip updates.

+
+

Cancellation policy

+

Cancel before 26 Feb for a partial refund. After that, the reservation is non-refundable

+ Learn more +
+

Ground rules

+

We ask every guest to remember a few simple things about what makes a great guest.

+ +
+

By selecting the button below, I agree to the Host's House Rules, Ground rules for guests, Airbnb's Rebooking and Refund Policy and that Airbnb can charge my payment method if I’m responsible for damage.

+ + +
+ ) +} + +export default ConfirmPage \ No newline at end of file