-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconstants.ts
41 lines (30 loc) · 919 Bytes
/
constants.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
import Logo from "@/public/logo/logo.png"
import Label from "@/public/heroLinks/leble.png"
import Stickers from "@/public/heroLinks/stickers.png"
import T_Shirt from "@/public/heroLinks/t-shirt.png"
import Cup from "@/public/heroLinks/cup.png"
import Sheet from "@/public/hero/mini.png"
import { CustomStickersImages } from "@/types/types"
import HeroImage_ from "@/public/hero/hero2.png"
import bears from "@/public/hero/bears.png"
import bears2 from "@/public/hero/bears2.png"
import kitties from "@/public/hero/kitties.png"
import rabbits from "@/public/hero/rabbits.png"
import rabbit from "@/public/hero/rabbit.png"
import cloud from "@/public/hero/cloud.png"
export const LOGO = Logo
export const HeroImages = {
bears,
bears2,
kitties,
rabbits,
cloud,
rabbit
}
export const NavbarHight = "100px"
export const HeroLinksImages = {
Label,
Stickers,
T_Shirt,
Cup
}