From 616cd6c050c46a66a83c4a08b7a49ad0f36c7c26 Mon Sep 17 00:00:00 2001
From: Yusuf Ipek
Date: Tue, 4 May 2021 11:12:31 +0300
Subject: [PATCH] created radio components and finished booking section
---
src/commons/about-section/about.jsx | 6 +-
src/commons/booking-section/booking.jsx | 2 +-
src/commons/form/form.jsx | 65 ++++++++++++++++++++++
src/commons/header/header.jsx | 6 +-
src/commons/stories-section/stories.jsx | 5 +-
src/commons/tours-section/tours.jsx | 18 ++++--
src/components/button/button-main.jsx | 10 ----
src/components/button/button-secondary.jsx | 5 --
src/components/form/form.jsx | 33 -----------
src/sass/abstracts/_variables.scss | 1 +
src/sass/base/_utilities.scss | 12 ++--
src/sass/components/_button.scss | 9 ++-
src/sass/components/_form.scss | 47 ++++++++++++++++
13 files changed, 147 insertions(+), 72 deletions(-)
create mode 100644 src/commons/form/form.jsx
delete mode 100644 src/components/button/button-main.jsx
delete mode 100644 src/components/button/button-secondary.jsx
delete mode 100644 src/components/form/form.jsx
diff --git a/src/commons/about-section/about.jsx b/src/commons/about-section/about.jsx
index a02c6e2..3dfdb12 100644
--- a/src/commons/about-section/about.jsx
+++ b/src/commons/about-section/about.jsx
@@ -1,4 +1,3 @@
-import ButtonSecondary from "../../components/button/button-secondary";
import nat1Large from "../../commons/images/nat-1-large.jpg";
import nat2Large from "../../commons/images/nat-2-large.jpg";
import nat3Large from "../../commons/images/nat-3-large.jpg";
@@ -31,8 +30,9 @@ function About() {
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam
perferendis esse minima provident neque
-
-
diff --git a/src/commons/booking-section/booking.jsx b/src/commons/booking-section/booking.jsx
index 0d3b821..44dd841 100644
--- a/src/commons/booking-section/booking.jsx
+++ b/src/commons/booking-section/booking.jsx
@@ -1,4 +1,4 @@
-import Form from "../../components/form/form";
+import Form from "../form/form";
function Booking() {
return (
diff --git a/src/commons/form/form.jsx b/src/commons/form/form.jsx
new file mode 100644
index 0000000..519eef6
--- /dev/null
+++ b/src/commons/form/form.jsx
@@ -0,0 +1,65 @@
+function Form() {
+ return (
+
+ );
+}
+
+export default Form;
diff --git a/src/commons/header/header.jsx b/src/commons/header/header.jsx
index 10aa12e..734df8a 100644
--- a/src/commons/header/header.jsx
+++ b/src/commons/header/header.jsx
@@ -1,5 +1,4 @@
import logoWhite from "../../commons/images/logo-white.png";
-import ButtonMain from "../../components/button/button-main";
function Header() {
return (
@@ -12,10 +11,7 @@ function Header() {
Outdoors
is where life happens
-
+
Discover our tours
);
diff --git a/src/commons/stories-section/stories.jsx b/src/commons/stories-section/stories.jsx
index 59d73b0..e5c1d5c 100644
--- a/src/commons/stories-section/stories.jsx
+++ b/src/commons/stories-section/stories.jsx
@@ -1,4 +1,3 @@
-import ButtonSecondary from "../../components/button/button-secondary";
import nat8 from "../images/nat-8.jpg";
import nat9 from "../images/nat-9.jpg";
import bgmp4 from "../images/video.mp4";
@@ -58,7 +57,9 @@ function Stories() {