-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsite.properties.ts
47 lines (41 loc) · 1.4 KB
/
website.properties.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { ButtonType } from './types/common.type'
export const logo: string = 'Food land'
export const headerButtons: ButtonType[] = [
{
name: 'SignUp',
link: '#SignUp',
},
{
name: 'NewsLetter',
link: '#NewsLetter',
},
]
export const footerText: string = 'Best recipes to your needs by our remarkable chefs'
export const footerLinks: ButtonType[] = [
{
name: 'About',
link: '#About',
},
{
name: 'Career',
link: '#Career',
},
{
name: 'History',
link: '#History',
},
{
name: 'Services',
link: '#Services',
},
]
export const dailyQuotes: string[] = [
'Cooking is like snow skiing: If you don’t fall at least 10 times, then you’re not skiing hard enough. — Guy Fieri',
'Cooking is like snow skiing: If you don’t fall at least 10 times, then you’re not skiing hard enough. — Guy Fieri',
'Cooking is like snow skiing: If you don’t fall at least 10 times, then you’re not skiing hard enough. — Guy Fieri',
]
export const BannerImageLink_HomePage: { imgLink: string; altText: string } = {
imgLink:
'https://skysonczwzlppjhpgude.supabase.co/storage/v1/object/sign/Recipe-Images/banner2.jpg?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1cmwiOiJSZWNpcGUtSW1hZ2VzL2Jhbm5lcjIuanBnIiwiaWF0IjoxNzI3NTMzMDE3LCJleHAiOjE3NTkwNjkwMTd9.CeCXr6_Ebvff2IpkGDNocv5TPC24Ny9moQzpbiyyCyk&t=2024-09-28T14%3A16%3A57.254Z',
altText: '3 womens making food',
}