From 22daba0866ffd0ee25ce0791ce5766270cbaeb04 Mon Sep 17 00:00:00 2001 From: DiksonIvySon <120308018+DiksonIvySon@users.noreply.github.com> Date: Tue, 16 Jan 2024 14:41:36 +0300 Subject: [PATCH] Created Events component: Still need to make decisions. --- src/Components/Events.css | 0 src/Components/Events.js | 27 +++++++++++++++++++++++++++ src/Components/Main.css | 2 +- src/Components/main.js | 2 +- 4 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 src/Components/Events.css create mode 100644 src/Components/Events.js diff --git a/src/Components/Events.css b/src/Components/Events.css new file mode 100644 index 0000000..e69de29 diff --git a/src/Components/Events.js b/src/Components/Events.js new file mode 100644 index 0000000..a6725ff --- /dev/null +++ b/src/Components/Events.js @@ -0,0 +1,27 @@ +import React from 'react' + +import Specials from "./specials"; +import Testimonials from "./testimonials"; +import Info from "./info"; +import Story from "./Story"; +import SectionHeader from "./SectionHeader"; +import MenuIntro from "./MenuIntro"; +import PlaceIntro from "./PlaceIntro"; +import { NavLink } from "react-router-dom"; + +function Events() { + return ( +
+ +
+
+ +

Date Night

+

+
+
+
+ ) +} + +export default Events \ No newline at end of file diff --git a/src/Components/Main.css b/src/Components/Main.css index 82d76bd..0fe8505 100644 --- a/src/Components/Main.css +++ b/src/Components/Main.css @@ -23,6 +23,6 @@ .primary-btn:hover { background-color: burlywood; - border: 1px solid #F7F1EA; + border: 1px solid burlywood; color: black; } \ No newline at end of file diff --git a/src/Components/main.js b/src/Components/main.js index 9a70c2b..de069b6 100644 --- a/src/Components/main.js +++ b/src/Components/main.js @@ -31,7 +31,7 @@ function Main() { - + ); }