-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added lists of navigation links for different sections and breakpoints
- Loading branch information
1 parent
4d016ee
commit 3012404
Showing
2 changed files
with
25 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
import { ListNav } from '../types'; | ||
import { ListNav } from "../types"; | ||
|
||
export const listGoodness: ListNav[] = [ | ||
{ name: 'Вірні друзі', to: '#catalog' }, | ||
{ name: 'Обрати друга', to: '#reviews' }, | ||
{ name: 'Щасливчики', to: '#how-to-order' }, | ||
{ name: 'Стати волонтером', to: '#contact' }, | ||
{ name: "Вірні друзі", to: "#catalog" }, | ||
{ name: "Обрати друга", to: "#reviews" }, | ||
{ name: "Щасливчики", to: "#how-to-order" }, | ||
{ name: "Стати волонтером", to: "#contact" }, | ||
]; | ||
|
||
export const listAbout: ListNav[] = [ | ||
{ name: 'Про нас', to: '#about-us' }, | ||
{ name: 'Наші умови', to: '#terms' }, | ||
{ name: 'Наша команда', to: '#contact' }, | ||
{ name: 'Історія створення', to: '#contact' }, | ||
{ name: "Про нас", to: "#about-us" }, | ||
{ name: "Наші умови", to: "#terms" }, | ||
{ name: "Наша команда", to: "#contact" }, | ||
{ name: "Історія створення", to: "#contact" }, | ||
]; | ||
export const listContactDetails: ListNav[] = [ | ||
{ name: 'Локація', to: '#location' }, | ||
{ name: 'Контакти', to: '#contact' }, | ||
{ name: 'Інормація', to: '#info' }, | ||
{ name: "Локація", to: "#location" }, | ||
{ name: "Контакти", to: "#contact" }, | ||
{ name: "Інормація", to: "#info" }, | ||
]; | ||
|
||
export const navHeader: ListNav[] = [ | ||
{ name: 'Про нас', to: '#about-us' }, | ||
{ name: 'Вірні друзі', to: '#catalog' }, | ||
{ name: 'Наші умови', to: '#terms' }, | ||
{ name: 'Локація', to: '#location' }, | ||
{ name: 'Контакти', to: '#contact' }, | ||
export const mobileNavigationList: ListNav[] = [ | ||
{ name: "Про нас", to: "#about-us" }, | ||
{ name: "Вірні друзі", to: "#catalog" }, | ||
{ name: "Наші умови", to: "#terms" }, | ||
{ name: "Локація", to: "#location" }, | ||
{ name: "Контакти", to: "#contact" }, | ||
]; | ||
|
||
export const navHeaderDesktop: ListNav[] = [ | ||
{ name: 'Домашня', to: '/' }, | ||
{ name: 'Про нас', to: '#about-us' }, | ||
{ name: 'Вірні друзі', to: '#catalog' }, | ||
{ name: 'Наші умови', to: '#terms' }, | ||
{ name: 'Локація', to: '#location' }, | ||
{ name: 'Контакти', to: '#contact' }, | ||
{ name: "Домашня", to: "/" }, | ||
{ name: "Про нас", to: "#about-us" }, | ||
{ name: "Вірні друзі", to: "#catalog" }, | ||
{ name: "Наші умови", to: "#terms" }, | ||
{ name: "Локація", to: "#location" }, | ||
{ name: "Контакти", to: "#contact" }, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
export * from "./Animal"; | ||
export * from "./ListNav"; |