Skip to content

Commit

Permalink
Created Events component: Still need to make decisions.
Browse files Browse the repository at this point in the history
  • Loading branch information
DiksonIvySon committed Jan 16, 2024
1 parent 1a36f4e commit 22daba0
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
Empty file added src/Components/Events.css
Empty file.
27 changes: 27 additions & 0 deletions src/Components/Events.js
Original file line number Diff line number Diff line change
@@ -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 (
<div className='events-container'>
<SectionHeader SectionHeader_text="Grand Delight"/>
<div className='events'>
<div className='event-card'>
<img src='' alt=''></img>
<h3>Date Night</h3>
<p></p>
</div>
</div>
</div>
)
}

export default Events
2 changes: 1 addition & 1 deletion src/Components/Main.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@

.primary-btn:hover {
background-color: burlywood;
border: 1px solid #F7F1EA;
border: 1px solid burlywood;
color: black;
}
2 changes: 1 addition & 1 deletion src/Components/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function Main() {
<Story />
<MenuIntro />
<PlaceIntro />
<Info />

</main>
);
}
Expand Down

0 comments on commit 22daba0

Please sign in to comment.