Skip to content

Commit

Permalink
add navigation to header
Browse files Browse the repository at this point in the history
  • Loading branch information
Shushunya committed Aug 31, 2023
1 parent a76c80d commit aedb9a7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions FrontEnd/src/components/HeaderFooter/header/navbar/Menu.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import css from "./Menu.module.css"
import { Link } from 'react-router-dom'
import { HashLink } from 'react-router-hash-link';

const MENU_LINKS = [
{
Expand All @@ -10,17 +10,17 @@ const MENU_LINKS = [
{
id: "m1",
title: "Компанії",
link: "#"
link: "/"
},
{
id: "m2",
title: "Стартапи",
link: "#"
link: "/"
},
{
id: "m3",
title: "Про нас",
link: "#"
link: "/#about-us"
},
]

Expand All @@ -29,7 +29,7 @@ function Menu () {
<div className={css["header-menu-section"]}>
{MENU_LINKS.map( (element) => (
<div className={css["header-menu-element"]} key={element.id}>
<Link className={css["header-menu-element__text"]} to={element.link}>{element.title}</Link>
<HashLink className={css["header-menu-element__text"]} to={element.link}>{element.title}</HashLink>
</div>
))}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const MainAboutSection = () => {
<div className="about-us-section-content">
<div className="about-us-rectangle">
<div className="about-us-section-content__field"/>
<div className="about-us-section-content__text">
<div className="about-us-section-content__text" id="about-us">
<div className="about-us-section-content__header-text">ХТО МИ</div>
<div className="about-us-section-content__smart-text">Це перший форум Західної України, цілями якого є популяризація українського виробника та представлення стартапів для розвитку галузі «Smart Craft&Food»</div>
<div className="about-us-section-content__smart-text">Це перший форум Західної України, цілями якого є популяризація українського виробника та представлення стартапів для розвитку галузі «Smart Craft&Food»</div>
Expand Down

0 comments on commit aedb9a7

Please sign in to comment.