├── _config.yml ├── css ├── cards.css └── about.css ├── .vscode └── settings.json ├── images ├── netanel-3.png ├── loading_gif-3.png ├── company logo-1.png ├── employe-image-1.png ├── employe-image-2.png ├── employe-image-3.png └── phones │ ├── Phone gif.png │ ├── netanel-5.png │ ├── phone-1.png │ ├── phone-10.png │ ├── phone-11.png │ ├── phone-12.png │ ├── phone-13.png │ ├── phone-14.png │ ├── phone-15.png │ ├── phone-2.png │ ├── phone-3.png │ ├── phone-4.png │ ├── phone-5.png │ ├── phone-6.png │ ├── phone-7.png │ ├── phone-8.png │ └── phone-9.png ├── style.css ├── js ├── devices.js └── users.js ├── html ├── devices.html ├── users.html ├── contact.html ├── addObject.html └── about.html └── index.html /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-slate -------------------------------------------------------------------------------- /css/cards.css: -------------------------------------------------------------------------------- 1 | #company_logo { 2 | width: 6vw; 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5502 3 | } -------------------------------------------------------------------------------- /images/netanel-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/netanel-3.png -------------------------------------------------------------------------------- /images/loading_gif-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/loading_gif-3.png -------------------------------------------------------------------------------- /images/company logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/company logo-1.png -------------------------------------------------------------------------------- /images/employe-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/employe-image-1.png -------------------------------------------------------------------------------- /images/employe-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/employe-image-2.png -------------------------------------------------------------------------------- /images/employe-image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/employe-image-3.png -------------------------------------------------------------------------------- /images/phones/Phone gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/Phone gif.png -------------------------------------------------------------------------------- /images/phones/netanel-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/netanel-5.png -------------------------------------------------------------------------------- /images/phones/phone-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-1.png -------------------------------------------------------------------------------- /images/phones/phone-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-10.png -------------------------------------------------------------------------------- /images/phones/phone-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-11.png -------------------------------------------------------------------------------- /images/phones/phone-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-12.png -------------------------------------------------------------------------------- /images/phones/phone-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-13.png -------------------------------------------------------------------------------- /images/phones/phone-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-14.png -------------------------------------------------------------------------------- /images/phones/phone-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-15.png -------------------------------------------------------------------------------- /images/phones/phone-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-2.png -------------------------------------------------------------------------------- /images/phones/phone-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-3.png -------------------------------------------------------------------------------- /images/phones/phone-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-4.png -------------------------------------------------------------------------------- /images/phones/phone-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-5.png -------------------------------------------------------------------------------- /images/phones/phone-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-6.png -------------------------------------------------------------------------------- /images/phones/phone-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-7.png -------------------------------------------------------------------------------- /images/phones/phone-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-8.png -------------------------------------------------------------------------------- /images/phones/phone-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetanelYaso/phone-store/HEAD/images/phones/phone-9.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | #homepage_video { 6 | width: 100vw; 7 | height: 60vh; 8 | } 9 | -------------------------------------------------------------------------------- /css/about.css: -------------------------------------------------------------------------------- 1 | #netanelImage { 2 | height: 50vh; 3 | } 4 | 5 | #employeImage1 { 6 | height: 30vh; 7 | } 8 | 9 | #employeImage2 { 10 | height: 30vh; 11 | } 12 | 13 | #employeImage3 { 14 | height: 30vh; 15 | } 16 | 17 | -------------------------------------------------------------------------------- /js/devices.js: -------------------------------------------------------------------------------- 1 | const DEVICES_API = "https://my-json-server.typicode.com/Jeck99/fake-server/devices"; 2 | let cardsContainer = document.getElementById('cards-container'); 3 | const picturesArray = [ 4 | "https://www.ivory.co.il/files/catalog/org/1652966067c67NF.jpg", 5 | "https://www.ivory.co.il/files/catalog/org/1651050178d78UC.jpg", 6 | "https://www.ivory.co.il/files/catalog/org/1656598251p51Nv.jpg" 7 | 8 | ]; 9 | let counter = 0; 10 | async function getDevices() { 11 | try { 12 | loading_gif.innerHTML = ``; 13 | let devices = await fetch(DEVICES_API).then(res => res.json()) 14 | devices.forEach(device => { 15 | cardsContainer.innerHTML += cardTemplate(device) 16 | }); 17 | } 18 | catch (error) { 19 | console.log("error"); 20 | } 21 | finally { 22 | loading_gif.innerHTML = " "; 23 | 24 | } 25 | } 26 | 27 | function cardTemplate(device) { 28 | let { id, brand, price, isAvailable, color, picture, ram } = device 29 | return ` 30 |
31 |
32 | 33 |
${brand}
34 |
${price}
35 |
${color}
36 |
${ram}
37 |
${isAvailable}
38 |
${id}
39 |
${picture}
40 | Delete 41 |
42 |
43 | ` 44 | } 45 | getDevices() -------------------------------------------------------------------------------- /js/users.js: -------------------------------------------------------------------------------- 1 | const USERS_API = "https://my-json-server.typicode.com/Jeck99/fake-server/users"; 2 | let user_Table = document.getElementById("user_Table"); 3 | async function getUsers() { 4 | try { 5 | return await fetch(USERS_API) 6 | .then(res => res.json()) 7 | } 8 | catch (error) { 9 | console.log("error"); 10 | } 11 | finally { } 12 | } 13 | function usersTable() { 14 | getUsers() 15 | .then(result => { 16 | result.forEach(item => { 17 | user_Table.innerHTML += ` 18 | 19 | ${item.age} 20 | ${item.name.first} 21 | ${item.name.last} 22 | ${item.email} 23 | ${item.index} 24 | ${item.phone} 25 | ${item.picture} 26 | 27 | ` 28 | }); 29 | }) 30 | } 31 | usersTable(); 32 | 33 | async function sendObject() { 34 | const data = { 35 | age: Inputage.value, 36 | name: { 37 | last: "", 38 | first: "" 39 | }, 40 | email: InputLastName.value, 41 | index: Inputemail.value, 42 | phone: Inputindex.value, 43 | picture: Inputphone.value 44 | } 45 | try { 46 | await fetch(USERS_API, { 47 | method: "POST", 48 | body: JSON.stringify(data), 49 | headers: { 50 | 'Content-Type': 'application/json' 51 | } 52 | } 53 | ) 54 | 55 | } 56 | catch (error) { 57 | console.log("error"); 58 | } 59 | finally { 60 | alert("sended to us :)"); 61 | } 62 | } -------------------------------------------------------------------------------- /html/devices.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | 12 | Document 13 | 14 | 15 | 16 |
17 | 50 |
51 |
52 |
53 | 54 |
55 | 56 | 57 | 76 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /html/users.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | 14 | 17 | Document 18 | 19 | 20 | 21 |
22 | 55 |
56 |
57 |
58 |

Here are some of our most active users :

59 |
60 |
61 | 62 | 63 |
64 |
65 |
66 | 67 | 68 | 69 |
70 |
71 | 72 | 73 | 74 | 75 | 76 | 77 |
ageFirst nameLast nameEmailIndexphonepicture
78 |
79 | 80 | 99 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | 14 | 17 | 18 | Document 19 | 20 | 21 | 22 |
23 | 56 |
57 |
58 |
59 |
60 |

The Mobiles You Love From

61 |

a Place You Can Trust.

62 | 63 |
64 | 68 |
69 |
70 |
71 | 73 |
74 |
75 | 77 |
78 |
79 | 81 |
82 |
83 |
84 | 85 | 86 |
87 |
88 |
89 | 90 |
91 | 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /html/contact.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | 14 | 17 | 18 | Document 19 | 20 | 21 | 22 |
23 | 56 |
57 |
58 |

Contact

59 |

Stay in touch with us for more details and news :

60 | 61 |
62 |
63 |
64 |
65 |
66 |
67 | 68 | 69 |
70 |
71 |
72 |
73 | 74 | 75 |
76 |
77 |
78 | 79 |
80 | 81 | 82 |
83 | 84 |
85 | 86 | 87 |
88 | 89 |
90 | 91 | 94 |
95 | 96 | 97 |
98 |
99 | 100 | 101 | 120 | 121 | 122 | 123 | -------------------------------------------------------------------------------- /html/addObject.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | 14 | 17 | Document 18 | 19 | 20 | 21 |
22 | 55 |
56 |
57 |

We Would Be Happy If You Join Us :

58 |
59 |
60 |
61 |
62 |
63 | 64 | 65 |
66 |
67 |
68 | 69 | 70 |
71 |
72 |
73 |
74 | 75 | 76 |
77 |
78 |
79 | 80 |
81 | 82 | 83 |
84 | 85 |
86 | 87 | 88 |
89 | 90 |
91 | 92 | 93 |
94 | 95 | 96 | 97 |
98 | 99 | 100 |
101 | 102 | 103 |
104 |
105 | 106 | 125 | 126 | 127 | 128 | -------------------------------------------------------------------------------- /html/about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | 14 | 17 | 18 | Document 19 | 20 | 21 | 22 |
23 | 55 |
56 |
57 |
58 | 59 |
60 |
61 |

"Everything Is a Setup For Your Next Best Season."

62 |
63 | - Netanel Yaso - 64 |
65 |

66 | N-Y Company.
67 | is an American multinational technology company that specializes in consumer electronics, software and 68 | online services headquartered in Cupertino, California, United States.
Apple is the largest technology 69 | company by 70 | revenue (totaling US$365.
8 billion in 2021) and as of May 2022, it is the world's second biggest company by 71 | market 72 | capitalization, the fourth-largest personal computer vendor by unit sales and second-largest mobile phone 73 | manufacturer.
It is one of the Big Five American information technology companies, alongside Alphabet, 74 | Amazon, 75 | Meta, and Microsoft. 76 |

77 |
78 | 79 |
80 |
Netanel Yaso(CEO & Founder)
81 |

82 | The establishment of N-Y Company was driven by my ambition to maintain the growth trajectory of our commercial 83 | activities.
Although we already have considerable experience and know-how and the companies in the group have 84 | not 85 | yet exhausted their growth potential, we are nonetheless aware that we need finances to continue our development. 86 |
87 | This is precisely the task with which FAIRDIP GROUP has been charged: to find investment capital for the group. 88 |

89 |
90 | 91 |
92 |
Jason Brown (CPO)
93 |

94 | Isaac Newton said that everything he achieved was the result of standing on the shoulders of giants.
I 95 | couldn’t 96 | put it any better.
All of our success is down to your skills and untiring application.
Every day, I am 97 | amazed by 98 | the effort you put in and the sacrifices you make.
I just want you all to know how much I appreciate all your 99 | hard 100 | work. 101 |

102 |
103 | 104 |
105 |
Venesa Smith (Employee Of The Month)
106 |

107 | It is a great honor for me to speak from this stage because I know that each of my colleagues and nominees was the 108 | same capable of winning the award. 109 |
110 | I would like to thank the voters who decided that it is my time to stand here. I am also thankful to the award 111 | organizing committee because the contest encourages us to work hard and reach goals.
After a year of working 112 | in 113 | our company, becoming the employee of the month is a valuable achievement for me. 114 |
115 | I would never win the award without the constant support and an inspiring environment in my team. I am grateful to 116 | have colleagues who help me to deal with challenges.
Moreover, I would like to thank our boss, Mr.Yaso, who 117 | believed in me and gave me many chances to show my best during this month.
It is a treasure to have a 118 | brilliant 119 | team and a great boss, and I am fortunate to have both in my work.
Lastly, I am thankful to my family, who 120 | encouraged me to get the job at this company and have always been there for me. 121 |
122 | Thank you very much! 123 |

124 |
125 | 126 |
127 |
Our Stuff (Human Resources)
128 |

129 | We at N-Y Company are solely engaged in investment opportunities for which we can guarantee our partners and 130 | investors a sensible level of risk, but attractive appreciation in the value of investment.
Words such as 131 | “gamble” 132 | or “one-hundred-fold” are alien to us; we are conservative and focus only on those areas which we understand.
133 | We 134 | primarily invest in the activities of related companies or in companies that we directly control. We work in areas 135 | that we understand and on markets that we know 136 |

137 |
138 | 139 | 157 | 158 | 159 | --------------------------------------------------------------------------------