diff --git a/src/app/slices/accessoriesSlice.ts b/src/app/slices/accessoriesSlice.ts index 08d2dd2..04ac55e 100644 --- a/src/app/slices/accessoriesSlice.ts +++ b/src/app/slices/accessoriesSlice.ts @@ -1,14 +1,48 @@ -import { PayloadAction, createSlice } from '@reduxjs/toolkit'; +import { PayloadAction, createAsyncThunk, createSlice } from '@reduxjs/toolkit'; import { Accessory } from '../../utils/types/Accessory'; +import { getAccessories } from '../../api/api'; -const initialState = null as Accessory[] | null; +interface AccessoryState { + accessories: Accessory[]; + isAccessoryLoading: boolean; + errorOnAccessories: string; +} + +const initialState: AccessoryState = { + accessories: [], + isAccessoryLoading: false, + errorOnAccessories: '', +}; + +export const loadAccessories = createAsyncThunk( + 'accessories/loadAccessories', + () => getAccessories(), +); export const accessoriesSlice = createSlice({ name: 'accessories', initialState: initialState, reducers: { - setAccessories: (_, action: PayloadAction) => action.payload, + setAccessories: (state, action: PayloadAction) => { + state.accessories = action.payload; + }, + }, + extraReducers(builder) { + builder.addCase(loadAccessories.pending, state => { + state.isAccessoryLoading = true; + }); + builder.addCase( + loadAccessories.fulfilled, + (state, action: PayloadAction) => { + state.accessories = action.payload; + state.isAccessoryLoading = false; + }, + ); + builder.addCase(loadAccessories.rejected, state => { + state.errorOnAccessories = 'error with accessories loading'; + state.isAccessoryLoading = false; + }); }, }); -export const accessoriesActions = accessoriesSlice.actions; +export const { setAccessories } = accessoriesSlice.actions; diff --git a/src/app/slices/phonesSlice.ts b/src/app/slices/phonesSlice.ts index 86361b3..afb25ef 100644 --- a/src/app/slices/phonesSlice.ts +++ b/src/app/slices/phonesSlice.ts @@ -1,14 +1,47 @@ -import { PayloadAction, createSlice } from '@reduxjs/toolkit'; +import { PayloadAction, createSlice, createAsyncThunk } from '@reduxjs/toolkit'; import { Phone } from '../../utils/types/Phone'; +import { getPhones } from '../../api/api'; -const initialState = null as Phone[] | null; +interface PhonesState { + phones: Phone[]; + isPhonesLoading: boolean; + errorOnPhones: string; +}; + +const initialState: PhonesState = { + phones: [], + isPhonesLoading: false, + errorOnPhones: '', +}; + +export const loadPhones = createAsyncThunk('phones/loadPhones', () => + getPhones(), +); export const phonesSlice = createSlice({ name: 'phones', initialState: initialState, reducers: { - setPhones: (_, action: PayloadAction) => action.payload, + setPhones: (state, action: PayloadAction) => { + state.phones = action.payload; + }, + }, + extraReducers(builder) { + builder.addCase(loadPhones.pending, state => { + state.isPhonesLoading = true; + }); + builder.addCase( + loadPhones.fulfilled, + (state, action: PayloadAction) => { + state.phones = action.payload; + state.isPhonesLoading = false; + }, + ); + builder.addCase(loadPhones.rejected, state => { + state.errorOnPhones = 'error with phones loading'; + state.isPhonesLoading = false; + }); }, }); -export const phonesActions = phonesSlice.actions; +export const { setPhones } = phonesSlice.actions; diff --git a/src/app/slices/productsSlice.ts b/src/app/slices/productsSlice.ts index b86377c..f3b12c6 100644 --- a/src/app/slices/productsSlice.ts +++ b/src/app/slices/productsSlice.ts @@ -1,14 +1,47 @@ -import { PayloadAction, createSlice } from '@reduxjs/toolkit'; +import { PayloadAction, createAsyncThunk, createSlice } from '@reduxjs/toolkit'; import { Product } from '../../utils/types/Product'; +import { getProducts } from '../../api/api'; -const initialState = null as Product[] | null; +interface ProductsState { + products: Product[]; + isProductsLoading: boolean; + errorOnProducts: string; +} + +const initialState: ProductsState = { + products: [], + isProductsLoading: false, + errorOnProducts: '', +}; + +export const loadProducts = createAsyncThunk('products/loadProducts', () => + getProducts(), +); export const productsSlice = createSlice({ name: 'products', initialState: initialState, reducers: { - setProducts: (_, action: PayloadAction) => action.payload, + setProducts: (state, action: PayloadAction) => { + state.products = action.payload; + }, + }, + extraReducers(builder) { + builder.addCase(loadProducts.pending, state => { + state.isProductsLoading = true; + }); + builder.addCase( + loadProducts.fulfilled, + (state, action: PayloadAction) => { + state.products = action.payload; + state.isProductsLoading = false; + }, + ); + builder.addCase(loadProducts.rejected, state => { + state.errorOnProducts = 'error with products loading'; + state.isProductsLoading = false; + }); }, }); -export const productsActions = productsSlice.actions; +export const { setProducts } = productsSlice.actions; diff --git a/src/app/slices/tabletsSlice.ts b/src/app/slices/tabletsSlice.ts index 82dc4e0..5c43e10 100644 --- a/src/app/slices/tabletsSlice.ts +++ b/src/app/slices/tabletsSlice.ts @@ -1,14 +1,47 @@ -import { PayloadAction, createSlice } from '@reduxjs/toolkit'; +import { PayloadAction, createAsyncThunk, createSlice } from '@reduxjs/toolkit'; import { Tablet } from '../../utils/types/Tablet'; +import { getTablets } from '../../api/api'; -const initialState = null as Tablet[] | null; +interface TabletsState { + tablets: Tablet[]; + isTabletsLoading: boolean; + errorOnTablets: string; +} + +const initialState: TabletsState = { + tablets: [], + isTabletsLoading: false, + errorOnTablets: '', +}; + +export const loadTablets = createAsyncThunk('tablets/loadTablets', () => + getTablets(), +); export const tabletsSlice = createSlice({ name: 'tablets', initialState: initialState, reducers: { - setTablets: (_, action: PayloadAction) => action.payload, + setTablets: (state, action: PayloadAction) => { + state.tablets = action.payload; + }, + }, + extraReducers(builder) { + builder.addCase(loadTablets.pending, state => { + state.isTabletsLoading = true; + }); + builder.addCase( + loadTablets.fulfilled, + (state, action: PayloadAction) => { + state.tablets = action.payload; + state.isTabletsLoading = false; + }, + ); + builder.addCase(loadTablets.rejected, state => { + state.errorOnTablets = 'error with tablets loading'; + state.isTabletsLoading = false; + }); }, }); -export const tabletsActions = tabletsSlice.actions; +export const { setTablets } = tabletsSlice.actions; diff --git a/src/img/accessories/apple-watch-se/gold/00.webp b/src/img/accessories/apple-watch-se/gold/00.webp new file mode 100644 index 0000000..e6c3f78 Binary files /dev/null and b/src/img/accessories/apple-watch-se/gold/00.webp differ diff --git a/src/img/accessories/apple-watch-se/gold/01.webp b/src/img/accessories/apple-watch-se/gold/01.webp new file mode 100644 index 0000000..b08a775 Binary files /dev/null and b/src/img/accessories/apple-watch-se/gold/01.webp differ diff --git a/src/img/accessories/apple-watch-se/gold/02.webp b/src/img/accessories/apple-watch-se/gold/02.webp new file mode 100644 index 0000000..0f3fb2d Binary files /dev/null and b/src/img/accessories/apple-watch-se/gold/02.webp differ diff --git a/src/img/accessories/apple-watch-se/silver/00.webp b/src/img/accessories/apple-watch-se/silver/00.webp new file mode 100644 index 0000000..076228a Binary files /dev/null and b/src/img/accessories/apple-watch-se/silver/00.webp differ diff --git a/src/img/accessories/apple-watch-se/silver/01.webp b/src/img/accessories/apple-watch-se/silver/01.webp new file mode 100644 index 0000000..24de24a Binary files /dev/null and b/src/img/accessories/apple-watch-se/silver/01.webp differ diff --git a/src/img/accessories/apple-watch-se/silver/02.webp b/src/img/accessories/apple-watch-se/silver/02.webp new file mode 100644 index 0000000..bd057b5 Binary files /dev/null and b/src/img/accessories/apple-watch-se/silver/02.webp differ diff --git a/src/img/accessories/apple-watch-se/space-gray/00.webp b/src/img/accessories/apple-watch-se/space-gray/00.webp new file mode 100644 index 0000000..4119e17 Binary files /dev/null and b/src/img/accessories/apple-watch-se/space-gray/00.webp differ diff --git a/src/img/accessories/apple-watch-se/space-gray/01.webp b/src/img/accessories/apple-watch-se/space-gray/01.webp new file mode 100644 index 0000000..7703a41 Binary files /dev/null and b/src/img/accessories/apple-watch-se/space-gray/01.webp differ diff --git a/src/img/accessories/apple-watch-se/space-gray/02.webp b/src/img/accessories/apple-watch-se/space-gray/02.webp new file mode 100644 index 0000000..6d8cd3d Binary files /dev/null and b/src/img/accessories/apple-watch-se/space-gray/02.webp differ diff --git a/src/img/accessories/apple-watch-series-3/gold/00.webp b/src/img/accessories/apple-watch-series-3/gold/00.webp new file mode 100644 index 0000000..0a938cd Binary files /dev/null and b/src/img/accessories/apple-watch-series-3/gold/00.webp differ diff --git a/src/img/accessories/apple-watch-series-3/gold/01.webp b/src/img/accessories/apple-watch-series-3/gold/01.webp new file mode 100644 index 0000000..7979ac6 Binary files /dev/null and b/src/img/accessories/apple-watch-series-3/gold/01.webp differ diff --git a/src/img/accessories/apple-watch-series-3/gold/02.webp b/src/img/accessories/apple-watch-series-3/gold/02.webp new file mode 100644 index 0000000..be7f0c7 Binary files /dev/null and b/src/img/accessories/apple-watch-series-3/gold/02.webp differ diff --git a/src/img/accessories/apple-watch-series-3/silver/00.webp b/src/img/accessories/apple-watch-series-3/silver/00.webp new file mode 100644 index 0000000..d89b97d Binary files /dev/null and b/src/img/accessories/apple-watch-series-3/silver/00.webp differ diff --git a/src/img/accessories/apple-watch-series-3/silver/01.webp b/src/img/accessories/apple-watch-series-3/silver/01.webp new file mode 100644 index 0000000..539038d Binary files /dev/null and b/src/img/accessories/apple-watch-series-3/silver/01.webp differ diff --git a/src/img/accessories/apple-watch-series-3/silver/02.webp b/src/img/accessories/apple-watch-series-3/silver/02.webp new file mode 100644 index 0000000..60bc507 Binary files /dev/null and b/src/img/accessories/apple-watch-series-3/silver/02.webp differ diff --git a/src/img/accessories/apple-watch-series-3/space-gray/00.webp b/src/img/accessories/apple-watch-series-3/space-gray/00.webp new file mode 100644 index 0000000..e6194f3 Binary files /dev/null and b/src/img/accessories/apple-watch-series-3/space-gray/00.webp differ diff --git a/src/img/accessories/apple-watch-series-3/space-gray/01.webp b/src/img/accessories/apple-watch-series-3/space-gray/01.webp new file mode 100644 index 0000000..5155f6f Binary files /dev/null and b/src/img/accessories/apple-watch-series-3/space-gray/01.webp differ diff --git a/src/img/accessories/apple-watch-series-3/space-gray/02.webp b/src/img/accessories/apple-watch-series-3/space-gray/02.webp new file mode 100644 index 0000000..eb8cbb1 Binary files /dev/null and b/src/img/accessories/apple-watch-series-3/space-gray/02.webp differ diff --git a/src/img/accessories/apple-watch-series-4/gold/00.webp b/src/img/accessories/apple-watch-series-4/gold/00.webp new file mode 100644 index 0000000..50ed1dc Binary files /dev/null and b/src/img/accessories/apple-watch-series-4/gold/00.webp differ diff --git a/src/img/accessories/apple-watch-series-4/gold/01.webp b/src/img/accessories/apple-watch-series-4/gold/01.webp new file mode 100644 index 0000000..da2519f Binary files /dev/null and b/src/img/accessories/apple-watch-series-4/gold/01.webp differ diff --git a/src/img/accessories/apple-watch-series-4/gold/02.webp b/src/img/accessories/apple-watch-series-4/gold/02.webp new file mode 100644 index 0000000..1753807 Binary files /dev/null and b/src/img/accessories/apple-watch-series-4/gold/02.webp differ diff --git a/src/img/accessories/apple-watch-series-4/silver/00.webp b/src/img/accessories/apple-watch-series-4/silver/00.webp new file mode 100644 index 0000000..8a6349f Binary files /dev/null and b/src/img/accessories/apple-watch-series-4/silver/00.webp differ diff --git a/src/img/accessories/apple-watch-series-4/silver/01.webp b/src/img/accessories/apple-watch-series-4/silver/01.webp new file mode 100644 index 0000000..2fe5209 Binary files /dev/null and b/src/img/accessories/apple-watch-series-4/silver/01.webp differ diff --git a/src/img/accessories/apple-watch-series-4/silver/02.webp b/src/img/accessories/apple-watch-series-4/silver/02.webp new file mode 100644 index 0000000..8c3c772 Binary files /dev/null and b/src/img/accessories/apple-watch-series-4/silver/02.webp differ diff --git a/src/img/accessories/apple-watch-series-4/space-gray/00.webp b/src/img/accessories/apple-watch-series-4/space-gray/00.webp new file mode 100644 index 0000000..47a0887 Binary files /dev/null and b/src/img/accessories/apple-watch-series-4/space-gray/00.webp differ diff --git a/src/img/accessories/apple-watch-series-4/space-gray/01.webp b/src/img/accessories/apple-watch-series-4/space-gray/01.webp new file mode 100644 index 0000000..ee29908 Binary files /dev/null and b/src/img/accessories/apple-watch-series-4/space-gray/01.webp differ diff --git a/src/img/accessories/apple-watch-series-4/space-gray/02.webp b/src/img/accessories/apple-watch-series-4/space-gray/02.webp new file mode 100644 index 0000000..42f1828 Binary files /dev/null and b/src/img/accessories/apple-watch-series-4/space-gray/02.webp differ diff --git a/src/img/accessories/apple-watch-series-5/gold/00.webp b/src/img/accessories/apple-watch-series-5/gold/00.webp new file mode 100644 index 0000000..57712f8 Binary files /dev/null and b/src/img/accessories/apple-watch-series-5/gold/00.webp differ diff --git a/src/img/accessories/apple-watch-series-5/gold/01.webp b/src/img/accessories/apple-watch-series-5/gold/01.webp new file mode 100644 index 0000000..cc67bbc Binary files /dev/null and b/src/img/accessories/apple-watch-series-5/gold/01.webp differ diff --git a/src/img/accessories/apple-watch-series-5/gold/02.webp b/src/img/accessories/apple-watch-series-5/gold/02.webp new file mode 100644 index 0000000..5d5854a Binary files /dev/null and b/src/img/accessories/apple-watch-series-5/gold/02.webp differ diff --git a/src/img/accessories/apple-watch-series-5/silver/00.webp b/src/img/accessories/apple-watch-series-5/silver/00.webp new file mode 100644 index 0000000..6893ef8 Binary files /dev/null and b/src/img/accessories/apple-watch-series-5/silver/00.webp differ diff --git a/src/img/accessories/apple-watch-series-5/silver/01.webp b/src/img/accessories/apple-watch-series-5/silver/01.webp new file mode 100644 index 0000000..13683da Binary files /dev/null and b/src/img/accessories/apple-watch-series-5/silver/01.webp differ diff --git a/src/img/accessories/apple-watch-series-5/silver/02.webp b/src/img/accessories/apple-watch-series-5/silver/02.webp new file mode 100644 index 0000000..543338e Binary files /dev/null and b/src/img/accessories/apple-watch-series-5/silver/02.webp differ diff --git a/src/img/accessories/apple-watch-series-5/space-gray/00.webp b/src/img/accessories/apple-watch-series-5/space-gray/00.webp new file mode 100644 index 0000000..31455e3 Binary files /dev/null and b/src/img/accessories/apple-watch-series-5/space-gray/00.webp differ diff --git a/src/img/accessories/apple-watch-series-5/space-gray/01.webp b/src/img/accessories/apple-watch-series-5/space-gray/01.webp new file mode 100644 index 0000000..3ccc14f Binary files /dev/null and b/src/img/accessories/apple-watch-series-5/space-gray/01.webp differ diff --git a/src/img/accessories/apple-watch-series-5/space-gray/02.webp b/src/img/accessories/apple-watch-series-5/space-gray/02.webp new file mode 100644 index 0000000..d0505e0 Binary files /dev/null and b/src/img/accessories/apple-watch-series-5/space-gray/02.webp differ diff --git a/src/img/accessories/apple-watch-series-6/blue/00.webp b/src/img/accessories/apple-watch-series-6/blue/00.webp new file mode 100644 index 0000000..4a69d00 Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/blue/00.webp differ diff --git a/src/img/accessories/apple-watch-series-6/blue/01.webp b/src/img/accessories/apple-watch-series-6/blue/01.webp new file mode 100644 index 0000000..36d6b70 Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/blue/01.webp differ diff --git a/src/img/accessories/apple-watch-series-6/blue/02.webp b/src/img/accessories/apple-watch-series-6/blue/02.webp new file mode 100644 index 0000000..e951700 Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/blue/02.webp differ diff --git a/src/img/accessories/apple-watch-series-6/gold/00.webp b/src/img/accessories/apple-watch-series-6/gold/00.webp new file mode 100644 index 0000000..d1cf7b8 Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/gold/00.webp differ diff --git a/src/img/accessories/apple-watch-series-6/gold/01.webp b/src/img/accessories/apple-watch-series-6/gold/01.webp new file mode 100644 index 0000000..529470b Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/gold/01.webp differ diff --git a/src/img/accessories/apple-watch-series-6/gold/02.webp b/src/img/accessories/apple-watch-series-6/gold/02.webp new file mode 100644 index 0000000..c38a1eb Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/gold/02.webp differ diff --git a/src/img/accessories/apple-watch-series-6/red/00.webp b/src/img/accessories/apple-watch-series-6/red/00.webp new file mode 100644 index 0000000..d693dc0 Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/red/00.webp differ diff --git a/src/img/accessories/apple-watch-series-6/red/01.webp b/src/img/accessories/apple-watch-series-6/red/01.webp new file mode 100644 index 0000000..39b6b14 Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/red/01.webp differ diff --git a/src/img/accessories/apple-watch-series-6/red/02.webp b/src/img/accessories/apple-watch-series-6/red/02.webp new file mode 100644 index 0000000..aa8e221 Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/red/02.webp differ diff --git a/src/img/accessories/apple-watch-series-6/silver/00.webp b/src/img/accessories/apple-watch-series-6/silver/00.webp new file mode 100644 index 0000000..bd46b93 Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/silver/00.webp differ diff --git a/src/img/accessories/apple-watch-series-6/silver/01.webp b/src/img/accessories/apple-watch-series-6/silver/01.webp new file mode 100644 index 0000000..398c168 Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/silver/01.webp differ diff --git a/src/img/accessories/apple-watch-series-6/silver/02.webp b/src/img/accessories/apple-watch-series-6/silver/02.webp new file mode 100644 index 0000000..49c62e5 Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/silver/02.webp differ diff --git a/src/img/accessories/apple-watch-series-6/space-gray/00.webp b/src/img/accessories/apple-watch-series-6/space-gray/00.webp new file mode 100644 index 0000000..d2a5d66 Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/space-gray/00.webp differ diff --git a/src/img/accessories/apple-watch-series-6/space-gray/01.webp b/src/img/accessories/apple-watch-series-6/space-gray/01.webp new file mode 100644 index 0000000..9c14ad9 Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/space-gray/01.webp differ diff --git a/src/img/accessories/apple-watch-series-6/space-gray/02.webp b/src/img/accessories/apple-watch-series-6/space-gray/02.webp new file mode 100644 index 0000000..dd9c96c Binary files /dev/null and b/src/img/accessories/apple-watch-series-6/space-gray/02.webp differ diff --git a/src/img/banners/banner-accessories.png b/src/img/banners/banner-accessories.png new file mode 100644 index 0000000..ba41c4e Binary files /dev/null and b/src/img/banners/banner-accessories.png differ diff --git a/src/img/banners/banner-phones.png b/src/img/banners/banner-phones.png new file mode 100644 index 0000000..c8fea5b Binary files /dev/null and b/src/img/banners/banner-phones.png differ diff --git a/src/img/banners/banner-tablets.png b/src/img/banners/banner-tablets.png new file mode 100644 index 0000000..d807973 Binary files /dev/null and b/src/img/banners/banner-tablets.png differ diff --git a/src/img/banners/cart-is-empty.png b/src/img/banners/cart-is-empty.png new file mode 100644 index 0000000..bacf336 Binary files /dev/null and b/src/img/banners/cart-is-empty.png differ diff --git a/src/img/banners/category-accessories.png b/src/img/banners/category-accessories.png new file mode 100644 index 0000000..67c5bfd Binary files /dev/null and b/src/img/banners/category-accessories.png differ diff --git a/src/img/banners/category-accessories.webp b/src/img/banners/category-accessories.webp new file mode 100644 index 0000000..a9aae0a Binary files /dev/null and b/src/img/banners/category-accessories.webp differ diff --git a/src/img/banners/category-phones.png b/src/img/banners/category-phones.png new file mode 100644 index 0000000..fd76160 Binary files /dev/null and b/src/img/banners/category-phones.png differ diff --git a/src/img/banners/category-phones.webp b/src/img/banners/category-phones.webp new file mode 100644 index 0000000..5ba1b29 Binary files /dev/null and b/src/img/banners/category-phones.webp differ diff --git a/src/img/banners/category-tablets.png b/src/img/banners/category-tablets.png new file mode 100644 index 0000000..57e33c5 Binary files /dev/null and b/src/img/banners/category-tablets.png differ diff --git a/src/img/banners/category-tablets.webp b/src/img/banners/category-tablets.webp new file mode 100644 index 0000000..f4a267b Binary files /dev/null and b/src/img/banners/category-tablets.webp differ diff --git a/src/img/banners/page-not-found.png b/src/img/banners/page-not-found.png new file mode 100644 index 0000000..b39a562 Binary files /dev/null and b/src/img/banners/page-not-found.png differ diff --git a/src/img/banners/picthree.bdd2e0fc.png b/src/img/banners/picthree.bdd2e0fc.png new file mode 100644 index 0000000..28b5c4c Binary files /dev/null and b/src/img/banners/picthree.bdd2e0fc.png differ diff --git a/src/img/banners/product-not-found.png b/src/img/banners/product-not-found.png new file mode 100644 index 0000000..aa335c9 Binary files /dev/null and b/src/img/banners/product-not-found.png differ diff --git a/src/img/phones/apple-iphone-11-pro-max/gold/00.webp b/src/img/phones/apple-iphone-11-pro-max/gold/00.webp new file mode 100644 index 0000000..0fc604d Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro-max/gold/00.webp differ diff --git a/src/img/phones/apple-iphone-11-pro-max/gold/01.webp b/src/img/phones/apple-iphone-11-pro-max/gold/01.webp new file mode 100644 index 0000000..3a78261 Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro-max/gold/01.webp differ diff --git a/src/img/phones/apple-iphone-11-pro-max/gold/02.webp b/src/img/phones/apple-iphone-11-pro-max/gold/02.webp new file mode 100644 index 0000000..4d6712f Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro-max/gold/02.webp differ diff --git a/src/img/phones/apple-iphone-11-pro-max/midnightgreen/00.webp b/src/img/phones/apple-iphone-11-pro-max/midnightgreen/00.webp new file mode 100644 index 0000000..276156e Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro-max/midnightgreen/00.webp differ diff --git a/src/img/phones/apple-iphone-11-pro-max/midnightgreen/01.webp b/src/img/phones/apple-iphone-11-pro-max/midnightgreen/01.webp new file mode 100644 index 0000000..0f2d4b0 Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro-max/midnightgreen/01.webp differ diff --git a/src/img/phones/apple-iphone-11-pro-max/midnightgreen/02.webp b/src/img/phones/apple-iphone-11-pro-max/midnightgreen/02.webp new file mode 100644 index 0000000..bb2a8db Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro-max/midnightgreen/02.webp differ diff --git a/src/img/phones/apple-iphone-11-pro-max/midnightgreen/03.webp b/src/img/phones/apple-iphone-11-pro-max/midnightgreen/03.webp new file mode 100644 index 0000000..18e77ea Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro-max/midnightgreen/03.webp differ diff --git a/src/img/phones/apple-iphone-11-pro-max/silver/00.webp b/src/img/phones/apple-iphone-11-pro-max/silver/00.webp new file mode 100644 index 0000000..1fa0a2f Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro-max/silver/00.webp differ diff --git a/src/img/phones/apple-iphone-11-pro-max/silver/01.webp b/src/img/phones/apple-iphone-11-pro-max/silver/01.webp new file mode 100644 index 0000000..9561cec Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro-max/silver/01.webp differ diff --git a/src/img/phones/apple-iphone-11-pro-max/silver/02.webp b/src/img/phones/apple-iphone-11-pro-max/silver/02.webp new file mode 100644 index 0000000..c22672e Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro-max/silver/02.webp differ diff --git a/src/img/phones/apple-iphone-11-pro-max/spacegray/00.webp b/src/img/phones/apple-iphone-11-pro-max/spacegray/00.webp new file mode 100644 index 0000000..cb6751c Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro-max/spacegray/00.webp differ diff --git a/src/img/phones/apple-iphone-11-pro-max/spacegray/01.webp b/src/img/phones/apple-iphone-11-pro-max/spacegray/01.webp new file mode 100644 index 0000000..f5b9320 Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro-max/spacegray/01.webp differ diff --git a/src/img/phones/apple-iphone-11-pro-max/spacegray/02.webp b/src/img/phones/apple-iphone-11-pro-max/spacegray/02.webp new file mode 100644 index 0000000..bdc4e7c Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro-max/spacegray/02.webp differ diff --git a/src/img/phones/apple-iphone-11-pro/gold/00.webp b/src/img/phones/apple-iphone-11-pro/gold/00.webp new file mode 100644 index 0000000..0fc604d Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro/gold/00.webp differ diff --git a/src/img/phones/apple-iphone-11-pro/gold/01.webp b/src/img/phones/apple-iphone-11-pro/gold/01.webp new file mode 100644 index 0000000..3a78261 Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro/gold/01.webp differ diff --git a/src/img/phones/apple-iphone-11-pro/gold/02.webp b/src/img/phones/apple-iphone-11-pro/gold/02.webp new file mode 100644 index 0000000..4d6712f Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro/gold/02.webp differ diff --git a/src/img/phones/apple-iphone-11-pro/midnightgreen/00.webp b/src/img/phones/apple-iphone-11-pro/midnightgreen/00.webp new file mode 100644 index 0000000..276156e Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro/midnightgreen/00.webp differ diff --git a/src/img/phones/apple-iphone-11-pro/midnightgreen/01.webp b/src/img/phones/apple-iphone-11-pro/midnightgreen/01.webp new file mode 100644 index 0000000..0f2d4b0 Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro/midnightgreen/01.webp differ diff --git a/src/img/phones/apple-iphone-11-pro/midnightgreen/02.webp b/src/img/phones/apple-iphone-11-pro/midnightgreen/02.webp new file mode 100644 index 0000000..bb2a8db Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro/midnightgreen/02.webp differ diff --git a/src/img/phones/apple-iphone-11-pro/midnightgreen/03.webp b/src/img/phones/apple-iphone-11-pro/midnightgreen/03.webp new file mode 100644 index 0000000..18e77ea Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro/midnightgreen/03.webp differ diff --git a/src/img/phones/apple-iphone-11-pro/silver/00.webp b/src/img/phones/apple-iphone-11-pro/silver/00.webp new file mode 100644 index 0000000..1fa0a2f Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro/silver/00.webp differ diff --git a/src/img/phones/apple-iphone-11-pro/silver/01.webp b/src/img/phones/apple-iphone-11-pro/silver/01.webp new file mode 100644 index 0000000..9561cec Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro/silver/01.webp differ diff --git a/src/img/phones/apple-iphone-11-pro/silver/02.webp b/src/img/phones/apple-iphone-11-pro/silver/02.webp new file mode 100644 index 0000000..c22672e Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro/silver/02.webp differ diff --git a/src/img/phones/apple-iphone-11-pro/spacegray/00.webp b/src/img/phones/apple-iphone-11-pro/spacegray/00.webp new file mode 100644 index 0000000..cb6751c Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro/spacegray/00.webp differ diff --git a/src/img/phones/apple-iphone-11-pro/spacegray/01.webp b/src/img/phones/apple-iphone-11-pro/spacegray/01.webp new file mode 100644 index 0000000..f5b9320 Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro/spacegray/01.webp differ diff --git a/src/img/phones/apple-iphone-11-pro/spacegray/02.webp b/src/img/phones/apple-iphone-11-pro/spacegray/02.webp new file mode 100644 index 0000000..bdc4e7c Binary files /dev/null and b/src/img/phones/apple-iphone-11-pro/spacegray/02.webp differ diff --git a/src/img/phones/apple-iphone-11/black/00.webp b/src/img/phones/apple-iphone-11/black/00.webp new file mode 100644 index 0000000..7232481 Binary files /dev/null and b/src/img/phones/apple-iphone-11/black/00.webp differ diff --git a/src/img/phones/apple-iphone-11/black/01.webp b/src/img/phones/apple-iphone-11/black/01.webp new file mode 100644 index 0000000..c8eb225 Binary files /dev/null and b/src/img/phones/apple-iphone-11/black/01.webp differ diff --git a/src/img/phones/apple-iphone-11/black/02.webp b/src/img/phones/apple-iphone-11/black/02.webp new file mode 100644 index 0000000..92fe13e Binary files /dev/null and b/src/img/phones/apple-iphone-11/black/02.webp differ diff --git a/src/img/phones/apple-iphone-11/black/03.webp b/src/img/phones/apple-iphone-11/black/03.webp new file mode 100644 index 0000000..c812da9 Binary files /dev/null and b/src/img/phones/apple-iphone-11/black/03.webp differ diff --git a/src/img/phones/apple-iphone-11/black/04.webp b/src/img/phones/apple-iphone-11/black/04.webp new file mode 100644 index 0000000..5d0e8ec Binary files /dev/null and b/src/img/phones/apple-iphone-11/black/04.webp differ diff --git a/src/img/phones/apple-iphone-11/green/00.webp b/src/img/phones/apple-iphone-11/green/00.webp new file mode 100644 index 0000000..eaff9e2 Binary files /dev/null and b/src/img/phones/apple-iphone-11/green/00.webp differ diff --git a/src/img/phones/apple-iphone-11/green/01.webp b/src/img/phones/apple-iphone-11/green/01.webp new file mode 100644 index 0000000..2237b33 Binary files /dev/null and b/src/img/phones/apple-iphone-11/green/01.webp differ diff --git a/src/img/phones/apple-iphone-11/green/02.webp b/src/img/phones/apple-iphone-11/green/02.webp new file mode 100644 index 0000000..d429e99 Binary files /dev/null and b/src/img/phones/apple-iphone-11/green/02.webp differ diff --git a/src/img/phones/apple-iphone-11/green/03.webp b/src/img/phones/apple-iphone-11/green/03.webp new file mode 100644 index 0000000..8362c0d Binary files /dev/null and b/src/img/phones/apple-iphone-11/green/03.webp differ diff --git a/src/img/phones/apple-iphone-11/green/04.webp b/src/img/phones/apple-iphone-11/green/04.webp new file mode 100644 index 0000000..0990b11 Binary files /dev/null and b/src/img/phones/apple-iphone-11/green/04.webp differ diff --git a/src/img/phones/apple-iphone-11/purple/00.webp b/src/img/phones/apple-iphone-11/purple/00.webp new file mode 100644 index 0000000..9a4d6bd Binary files /dev/null and b/src/img/phones/apple-iphone-11/purple/00.webp differ diff --git a/src/img/phones/apple-iphone-11/purple/01.webp b/src/img/phones/apple-iphone-11/purple/01.webp new file mode 100644 index 0000000..4568ecb Binary files /dev/null and b/src/img/phones/apple-iphone-11/purple/01.webp differ diff --git a/src/img/phones/apple-iphone-11/purple/02.webp b/src/img/phones/apple-iphone-11/purple/02.webp new file mode 100644 index 0000000..098fa5e Binary files /dev/null and b/src/img/phones/apple-iphone-11/purple/02.webp differ diff --git a/src/img/phones/apple-iphone-11/purple/03.webp b/src/img/phones/apple-iphone-11/purple/03.webp new file mode 100644 index 0000000..19617bb Binary files /dev/null and b/src/img/phones/apple-iphone-11/purple/03.webp differ diff --git a/src/img/phones/apple-iphone-11/purple/04.webp b/src/img/phones/apple-iphone-11/purple/04.webp new file mode 100644 index 0000000..b25b6b2 Binary files /dev/null and b/src/img/phones/apple-iphone-11/purple/04.webp differ diff --git a/src/img/phones/apple-iphone-11/red/00.webp b/src/img/phones/apple-iphone-11/red/00.webp new file mode 100644 index 0000000..74a1efb Binary files /dev/null and b/src/img/phones/apple-iphone-11/red/00.webp differ diff --git a/src/img/phones/apple-iphone-11/red/01.webp b/src/img/phones/apple-iphone-11/red/01.webp new file mode 100644 index 0000000..ba4b055 Binary files /dev/null and b/src/img/phones/apple-iphone-11/red/01.webp differ diff --git a/src/img/phones/apple-iphone-11/red/02.webp b/src/img/phones/apple-iphone-11/red/02.webp new file mode 100644 index 0000000..d8bf3f4 Binary files /dev/null and b/src/img/phones/apple-iphone-11/red/02.webp differ diff --git a/src/img/phones/apple-iphone-11/red/03.webp b/src/img/phones/apple-iphone-11/red/03.webp new file mode 100644 index 0000000..bce1c87 Binary files /dev/null and b/src/img/phones/apple-iphone-11/red/03.webp differ diff --git a/src/img/phones/apple-iphone-11/red/04.webp b/src/img/phones/apple-iphone-11/red/04.webp new file mode 100644 index 0000000..3c39c11 Binary files /dev/null and b/src/img/phones/apple-iphone-11/red/04.webp differ diff --git a/src/img/phones/apple-iphone-11/white/00.webp b/src/img/phones/apple-iphone-11/white/00.webp new file mode 100644 index 0000000..4a876dc Binary files /dev/null and b/src/img/phones/apple-iphone-11/white/00.webp differ diff --git a/src/img/phones/apple-iphone-11/white/01.webp b/src/img/phones/apple-iphone-11/white/01.webp new file mode 100644 index 0000000..62ef322 Binary files /dev/null and b/src/img/phones/apple-iphone-11/white/01.webp differ diff --git a/src/img/phones/apple-iphone-11/white/02.webp b/src/img/phones/apple-iphone-11/white/02.webp new file mode 100644 index 0000000..fd4bd2d Binary files /dev/null and b/src/img/phones/apple-iphone-11/white/02.webp differ diff --git a/src/img/phones/apple-iphone-11/white/03.webp b/src/img/phones/apple-iphone-11/white/03.webp new file mode 100644 index 0000000..bf3134e Binary files /dev/null and b/src/img/phones/apple-iphone-11/white/03.webp differ diff --git a/src/img/phones/apple-iphone-11/white/04.webp b/src/img/phones/apple-iphone-11/white/04.webp new file mode 100644 index 0000000..963bf88 Binary files /dev/null and b/src/img/phones/apple-iphone-11/white/04.webp differ diff --git a/src/img/phones/apple-iphone-11/yellow/00.webp b/src/img/phones/apple-iphone-11/yellow/00.webp new file mode 100644 index 0000000..828efaa Binary files /dev/null and b/src/img/phones/apple-iphone-11/yellow/00.webp differ diff --git a/src/img/phones/apple-iphone-11/yellow/01.webp b/src/img/phones/apple-iphone-11/yellow/01.webp new file mode 100644 index 0000000..6794c7e Binary files /dev/null and b/src/img/phones/apple-iphone-11/yellow/01.webp differ diff --git a/src/img/phones/apple-iphone-11/yellow/02.webp b/src/img/phones/apple-iphone-11/yellow/02.webp new file mode 100644 index 0000000..dcb4619 Binary files /dev/null and b/src/img/phones/apple-iphone-11/yellow/02.webp differ diff --git a/src/img/phones/apple-iphone-11/yellow/03.webp b/src/img/phones/apple-iphone-11/yellow/03.webp new file mode 100644 index 0000000..fb86ec9 Binary files /dev/null and b/src/img/phones/apple-iphone-11/yellow/03.webp differ diff --git a/src/img/phones/apple-iphone-11/yellow/04.webp b/src/img/phones/apple-iphone-11/yellow/04.webp new file mode 100644 index 0000000..edaa145 Binary files /dev/null and b/src/img/phones/apple-iphone-11/yellow/04.webp differ diff --git a/src/img/phones/apple-iphone-12/black/00.webp b/src/img/phones/apple-iphone-12/black/00.webp new file mode 100644 index 0000000..bf5b6a4 Binary files /dev/null and b/src/img/phones/apple-iphone-12/black/00.webp differ diff --git a/src/img/phones/apple-iphone-12/black/01.webp b/src/img/phones/apple-iphone-12/black/01.webp new file mode 100644 index 0000000..dc1064d Binary files /dev/null and b/src/img/phones/apple-iphone-12/black/01.webp differ diff --git a/src/img/phones/apple-iphone-12/black/02.webp b/src/img/phones/apple-iphone-12/black/02.webp new file mode 100644 index 0000000..23ff5a7 Binary files /dev/null and b/src/img/phones/apple-iphone-12/black/02.webp differ diff --git a/src/img/phones/apple-iphone-12/black/03.webp b/src/img/phones/apple-iphone-12/black/03.webp new file mode 100644 index 0000000..41c942f Binary files /dev/null and b/src/img/phones/apple-iphone-12/black/03.webp differ diff --git a/src/img/phones/apple-iphone-12/purple/00.webp b/src/img/phones/apple-iphone-12/purple/00.webp new file mode 100644 index 0000000..1bbde2a Binary files /dev/null and b/src/img/phones/apple-iphone-12/purple/00.webp differ diff --git a/src/img/phones/apple-iphone-12/purple/01.webp b/src/img/phones/apple-iphone-12/purple/01.webp new file mode 100644 index 0000000..918e66a Binary files /dev/null and b/src/img/phones/apple-iphone-12/purple/01.webp differ diff --git a/src/img/phones/apple-iphone-12/purple/02.webp b/src/img/phones/apple-iphone-12/purple/02.webp new file mode 100644 index 0000000..123af04 Binary files /dev/null and b/src/img/phones/apple-iphone-12/purple/02.webp differ diff --git a/src/img/phones/apple-iphone-12/purple/03.webp b/src/img/phones/apple-iphone-12/purple/03.webp new file mode 100644 index 0000000..90f6e47 Binary files /dev/null and b/src/img/phones/apple-iphone-12/purple/03.webp differ diff --git a/src/img/phones/apple-iphone-12/red/00.webp b/src/img/phones/apple-iphone-12/red/00.webp new file mode 100644 index 0000000..5f1660e Binary files /dev/null and b/src/img/phones/apple-iphone-12/red/00.webp differ diff --git a/src/img/phones/apple-iphone-12/red/01.webp b/src/img/phones/apple-iphone-12/red/01.webp new file mode 100644 index 0000000..f8f13c4 Binary files /dev/null and b/src/img/phones/apple-iphone-12/red/01.webp differ diff --git a/src/img/phones/apple-iphone-12/red/02.webp b/src/img/phones/apple-iphone-12/red/02.webp new file mode 100644 index 0000000..23ff5a7 Binary files /dev/null and b/src/img/phones/apple-iphone-12/red/02.webp differ diff --git a/src/img/phones/apple-iphone-12/red/03.webp b/src/img/phones/apple-iphone-12/red/03.webp new file mode 100644 index 0000000..41c942f Binary files /dev/null and b/src/img/phones/apple-iphone-12/red/03.webp differ diff --git a/src/img/phones/apple-iphone-12/white/00.webp b/src/img/phones/apple-iphone-12/white/00.webp new file mode 100644 index 0000000..cc7cec1 Binary files /dev/null and b/src/img/phones/apple-iphone-12/white/00.webp differ diff --git a/src/img/phones/apple-iphone-12/white/01.webp b/src/img/phones/apple-iphone-12/white/01.webp new file mode 100644 index 0000000..80c231c Binary files /dev/null and b/src/img/phones/apple-iphone-12/white/01.webp differ diff --git a/src/img/phones/apple-iphone-12/white/03.webp b/src/img/phones/apple-iphone-12/white/03.webp new file mode 100644 index 0000000..23ff5a7 Binary files /dev/null and b/src/img/phones/apple-iphone-12/white/03.webp differ diff --git a/src/img/phones/apple-iphone-12/white/04.webp b/src/img/phones/apple-iphone-12/white/04.webp new file mode 100644 index 0000000..41c942f Binary files /dev/null and b/src/img/phones/apple-iphone-12/white/04.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/blue/00.webp b/src/img/phones/apple-iphone-13-mini/blue/00.webp new file mode 100644 index 0000000..3e355b8 Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/blue/00.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/blue/01.webp b/src/img/phones/apple-iphone-13-mini/blue/01.webp new file mode 100644 index 0000000..3162f75 Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/blue/01.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/blue/02.webp b/src/img/phones/apple-iphone-13-mini/blue/02.webp new file mode 100644 index 0000000..d434d95 Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/blue/02.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/blue/03.webp b/src/img/phones/apple-iphone-13-mini/blue/03.webp new file mode 100644 index 0000000..17e0e5e Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/blue/03.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/midnight/00.webp b/src/img/phones/apple-iphone-13-mini/midnight/00.webp new file mode 100644 index 0000000..4b493b7 Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/midnight/00.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/midnight/01.webp b/src/img/phones/apple-iphone-13-mini/midnight/01.webp new file mode 100644 index 0000000..7830b7d Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/midnight/01.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/midnight/02.webp b/src/img/phones/apple-iphone-13-mini/midnight/02.webp new file mode 100644 index 0000000..f454922 Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/midnight/02.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/midnight/03.webp b/src/img/phones/apple-iphone-13-mini/midnight/03.webp new file mode 100644 index 0000000..9b49f17 Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/midnight/03.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/pink/00.webp b/src/img/phones/apple-iphone-13-mini/pink/00.webp new file mode 100644 index 0000000..c1b8bde Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/pink/00.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/pink/01.webp b/src/img/phones/apple-iphone-13-mini/pink/01.webp new file mode 100644 index 0000000..1fcaf5a Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/pink/01.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/pink/02.webp b/src/img/phones/apple-iphone-13-mini/pink/02.webp new file mode 100644 index 0000000..546cf4b Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/pink/02.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/pink/03.webp b/src/img/phones/apple-iphone-13-mini/pink/03.webp new file mode 100644 index 0000000..35f7807 Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/pink/03.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/white/00.webp b/src/img/phones/apple-iphone-13-mini/white/00.webp new file mode 100644 index 0000000..75173e9 Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/white/00.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/white/01.webp b/src/img/phones/apple-iphone-13-mini/white/01.webp new file mode 100644 index 0000000..720a7d0 Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/white/01.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/white/02.webp b/src/img/phones/apple-iphone-13-mini/white/02.webp new file mode 100644 index 0000000..acfd0db Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/white/02.webp differ diff --git a/src/img/phones/apple-iphone-13-mini/white/03.webp b/src/img/phones/apple-iphone-13-mini/white/03.webp new file mode 100644 index 0000000..6f99ba1 Binary files /dev/null and b/src/img/phones/apple-iphone-13-mini/white/03.webp differ diff --git a/src/img/phones/apple-iphone-13-pro-max/gold/00.webp b/src/img/phones/apple-iphone-13-pro-max/gold/00.webp new file mode 100644 index 0000000..f3a5890 Binary files /dev/null and b/src/img/phones/apple-iphone-13-pro-max/gold/00.webp differ diff --git a/src/img/phones/apple-iphone-13-pro-max/gold/01.webp b/src/img/phones/apple-iphone-13-pro-max/gold/01.webp new file mode 100644 index 0000000..827143e Binary files /dev/null and b/src/img/phones/apple-iphone-13-pro-max/gold/01.webp differ diff --git a/src/img/phones/apple-iphone-13-pro-max/gold/02.webp b/src/img/phones/apple-iphone-13-pro-max/gold/02.webp new file mode 100644 index 0000000..19565e9 Binary files /dev/null and b/src/img/phones/apple-iphone-13-pro-max/gold/02.webp differ diff --git a/src/img/phones/apple-iphone-13-pro-max/gold/03.webp b/src/img/phones/apple-iphone-13-pro-max/gold/03.webp new file mode 100644 index 0000000..e503cc8 Binary files /dev/null and b/src/img/phones/apple-iphone-13-pro-max/gold/03.webp differ diff --git a/src/img/phones/apple-iphone-13-pro-max/graphite/00.webp b/src/img/phones/apple-iphone-13-pro-max/graphite/00.webp new file mode 100644 index 0000000..5638b95 Binary files /dev/null and b/src/img/phones/apple-iphone-13-pro-max/graphite/00.webp differ diff --git a/src/img/phones/apple-iphone-13-pro-max/graphite/01.webp b/src/img/phones/apple-iphone-13-pro-max/graphite/01.webp new file mode 100644 index 0000000..081829b Binary files /dev/null and b/src/img/phones/apple-iphone-13-pro-max/graphite/01.webp differ diff --git a/src/img/phones/apple-iphone-13-pro-max/graphite/02.webp b/src/img/phones/apple-iphone-13-pro-max/graphite/02.webp new file mode 100644 index 0000000..bf400fb Binary files /dev/null and b/src/img/phones/apple-iphone-13-pro-max/graphite/02.webp differ diff --git a/src/img/phones/apple-iphone-13-pro-max/graphite/03.webp b/src/img/phones/apple-iphone-13-pro-max/graphite/03.webp new file mode 100644 index 0000000..800dfdf Binary files /dev/null and b/src/img/phones/apple-iphone-13-pro-max/graphite/03.webp differ diff --git a/src/img/phones/apple-iphone-13-pro-max/sierrablue/00.webp b/src/img/phones/apple-iphone-13-pro-max/sierrablue/00.webp new file mode 100644 index 0000000..57c6d68 Binary files /dev/null and b/src/img/phones/apple-iphone-13-pro-max/sierrablue/00.webp differ diff --git a/src/img/phones/apple-iphone-13-pro-max/sierrablue/01.webp b/src/img/phones/apple-iphone-13-pro-max/sierrablue/01.webp new file mode 100644 index 0000000..44077de Binary files /dev/null and b/src/img/phones/apple-iphone-13-pro-max/sierrablue/01.webp differ diff --git a/src/img/phones/apple-iphone-13-pro-max/sierrablue/02.webp b/src/img/phones/apple-iphone-13-pro-max/sierrablue/02.webp new file mode 100644 index 0000000..b1e8279 Binary files /dev/null and b/src/img/phones/apple-iphone-13-pro-max/sierrablue/02.webp differ diff --git a/src/img/phones/apple-iphone-13-pro-max/sierrablue/03.webp b/src/img/phones/apple-iphone-13-pro-max/sierrablue/03.webp new file mode 100644 index 0000000..4851f7c Binary files /dev/null and b/src/img/phones/apple-iphone-13-pro-max/sierrablue/03.webp differ diff --git a/src/img/phones/apple-iphone-14-pro/gold/00.webp b/src/img/phones/apple-iphone-14-pro/gold/00.webp new file mode 100644 index 0000000..134e9c9 Binary files /dev/null and b/src/img/phones/apple-iphone-14-pro/gold/00.webp differ diff --git a/src/img/phones/apple-iphone-14-pro/gold/01.webp b/src/img/phones/apple-iphone-14-pro/gold/01.webp new file mode 100644 index 0000000..fc945d0 Binary files /dev/null and b/src/img/phones/apple-iphone-14-pro/gold/01.webp differ diff --git a/src/img/phones/apple-iphone-14-pro/gold/02.webp b/src/img/phones/apple-iphone-14-pro/gold/02.webp new file mode 100644 index 0000000..2bf281a Binary files /dev/null and b/src/img/phones/apple-iphone-14-pro/gold/02.webp differ diff --git a/src/img/phones/apple-iphone-14-pro/gold/03.webp b/src/img/phones/apple-iphone-14-pro/gold/03.webp new file mode 100644 index 0000000..ab121d8 Binary files /dev/null and b/src/img/phones/apple-iphone-14-pro/gold/03.webp differ diff --git a/src/img/phones/apple-iphone-14-pro/gold/04.webp b/src/img/phones/apple-iphone-14-pro/gold/04.webp new file mode 100644 index 0000000..3b35f2f Binary files /dev/null and b/src/img/phones/apple-iphone-14-pro/gold/04.webp differ diff --git a/src/img/phones/apple-iphone-14-pro/spaceblack/00.webp b/src/img/phones/apple-iphone-14-pro/spaceblack/00.webp new file mode 100644 index 0000000..2f30ae1 Binary files /dev/null and b/src/img/phones/apple-iphone-14-pro/spaceblack/00.webp differ diff --git a/src/img/phones/apple-iphone-14-pro/spaceblack/01.webp b/src/img/phones/apple-iphone-14-pro/spaceblack/01.webp new file mode 100644 index 0000000..eddefac Binary files /dev/null and b/src/img/phones/apple-iphone-14-pro/spaceblack/01.webp differ diff --git a/src/img/phones/apple-iphone-14-pro/spaceblack/02.webp b/src/img/phones/apple-iphone-14-pro/spaceblack/02.webp new file mode 100644 index 0000000..40485f1 Binary files /dev/null and b/src/img/phones/apple-iphone-14-pro/spaceblack/02.webp differ diff --git a/src/img/phones/apple-iphone-14-pro/spaceblack/03.webp b/src/img/phones/apple-iphone-14-pro/spaceblack/03.webp new file mode 100644 index 0000000..8d67f2f Binary files /dev/null and b/src/img/phones/apple-iphone-14-pro/spaceblack/03.webp differ diff --git a/src/img/phones/apple-iphone-14-pro/spaceblack/04.webp b/src/img/phones/apple-iphone-14-pro/spaceblack/04.webp new file mode 100644 index 0000000..3b35f2f Binary files /dev/null and b/src/img/phones/apple-iphone-14-pro/spaceblack/04.webp differ diff --git a/src/img/phones/apple-iphone-14/midnight/00.webp b/src/img/phones/apple-iphone-14/midnight/00.webp new file mode 100644 index 0000000..caa2de2 Binary files /dev/null and b/src/img/phones/apple-iphone-14/midnight/00.webp differ diff --git a/src/img/phones/apple-iphone-14/midnight/01.webp b/src/img/phones/apple-iphone-14/midnight/01.webp new file mode 100644 index 0000000..099b2b6 Binary files /dev/null and b/src/img/phones/apple-iphone-14/midnight/01.webp differ diff --git a/src/img/phones/apple-iphone-14/midnight/02.webp b/src/img/phones/apple-iphone-14/midnight/02.webp new file mode 100644 index 0000000..94c78d2 Binary files /dev/null and b/src/img/phones/apple-iphone-14/midnight/02.webp differ diff --git a/src/img/phones/apple-iphone-14/midnight/03.webp b/src/img/phones/apple-iphone-14/midnight/03.webp new file mode 100644 index 0000000..a490c7e Binary files /dev/null and b/src/img/phones/apple-iphone-14/midnight/03.webp differ diff --git a/src/img/phones/apple-iphone-14/midnight/04.webp b/src/img/phones/apple-iphone-14/midnight/04.webp new file mode 100644 index 0000000..f56230a Binary files /dev/null and b/src/img/phones/apple-iphone-14/midnight/04.webp differ diff --git a/src/img/phones/apple-iphone-14/purple/00.webp b/src/img/phones/apple-iphone-14/purple/00.webp new file mode 100644 index 0000000..0ad68a1 Binary files /dev/null and b/src/img/phones/apple-iphone-14/purple/00.webp differ diff --git a/src/img/phones/apple-iphone-14/purple/01.webp b/src/img/phones/apple-iphone-14/purple/01.webp new file mode 100644 index 0000000..1905dde Binary files /dev/null and b/src/img/phones/apple-iphone-14/purple/01.webp differ diff --git a/src/img/phones/apple-iphone-14/purple/02.webp b/src/img/phones/apple-iphone-14/purple/02.webp new file mode 100644 index 0000000..98b128b Binary files /dev/null and b/src/img/phones/apple-iphone-14/purple/02.webp differ diff --git a/src/img/phones/apple-iphone-14/purple/03.webp b/src/img/phones/apple-iphone-14/purple/03.webp new file mode 100644 index 0000000..08734bb Binary files /dev/null and b/src/img/phones/apple-iphone-14/purple/03.webp differ diff --git a/src/img/phones/apple-iphone-14/purple/04.webp b/src/img/phones/apple-iphone-14/purple/04.webp new file mode 100644 index 0000000..e5b5182 Binary files /dev/null and b/src/img/phones/apple-iphone-14/purple/04.webp differ diff --git a/src/img/phones/apple-iphone-14/yellow/00.webp b/src/img/phones/apple-iphone-14/yellow/00.webp new file mode 100644 index 0000000..04291ae Binary files /dev/null and b/src/img/phones/apple-iphone-14/yellow/00.webp differ diff --git a/src/img/phones/apple-iphone-14/yellow/01.webp b/src/img/phones/apple-iphone-14/yellow/01.webp new file mode 100644 index 0000000..fe77406 Binary files /dev/null and b/src/img/phones/apple-iphone-14/yellow/01.webp differ diff --git a/src/img/phones/apple-iphone-14/yellow/02.webp b/src/img/phones/apple-iphone-14/yellow/02.webp new file mode 100644 index 0000000..b08c617 Binary files /dev/null and b/src/img/phones/apple-iphone-14/yellow/02.webp differ diff --git a/src/img/phones/apple-iphone-14/yellow/03.webp b/src/img/phones/apple-iphone-14/yellow/03.webp new file mode 100644 index 0000000..273747a Binary files /dev/null and b/src/img/phones/apple-iphone-14/yellow/03.webp differ diff --git a/src/img/phones/apple-iphone-14/yellow/04.webp b/src/img/phones/apple-iphone-14/yellow/04.webp new file mode 100644 index 0000000..79519a1 Binary files /dev/null and b/src/img/phones/apple-iphone-14/yellow/04.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/black/00.webp b/src/img/phones/apple-iphone-7-plus/black/00.webp new file mode 100644 index 0000000..09b4e51 Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/black/00.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/black/01.webp b/src/img/phones/apple-iphone-7-plus/black/01.webp new file mode 100644 index 0000000..008514d Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/black/01.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/black/02.webp b/src/img/phones/apple-iphone-7-plus/black/02.webp new file mode 100644 index 0000000..98e9c75 Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/black/02.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/black/03.webp b/src/img/phones/apple-iphone-7-plus/black/03.webp new file mode 100644 index 0000000..c8426c9 Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/black/03.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/black/04.webp b/src/img/phones/apple-iphone-7-plus/black/04.webp new file mode 100644 index 0000000..69cc245 Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/black/04.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/gold/00.webp b/src/img/phones/apple-iphone-7-plus/gold/00.webp new file mode 100644 index 0000000..0f09450 Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/gold/00.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/gold/01.webp b/src/img/phones/apple-iphone-7-plus/gold/01.webp new file mode 100644 index 0000000..8aea950 Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/gold/01.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/gold/02.webp b/src/img/phones/apple-iphone-7-plus/gold/02.webp new file mode 100644 index 0000000..bd8de08 Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/gold/02.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/gold/03.webp b/src/img/phones/apple-iphone-7-plus/gold/03.webp new file mode 100644 index 0000000..bb2a439 Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/gold/03.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/gold/04.webp b/src/img/phones/apple-iphone-7-plus/gold/04.webp new file mode 100644 index 0000000..4888960 Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/gold/04.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/rosegold/00.webp b/src/img/phones/apple-iphone-7-plus/rosegold/00.webp new file mode 100644 index 0000000..8446b36 Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/rosegold/00.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/rosegold/01.webp b/src/img/phones/apple-iphone-7-plus/rosegold/01.webp new file mode 100644 index 0000000..36829cc Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/rosegold/01.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/rosegold/02.webp b/src/img/phones/apple-iphone-7-plus/rosegold/02.webp new file mode 100644 index 0000000..4f058cb Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/rosegold/02.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/rosegold/03.webp b/src/img/phones/apple-iphone-7-plus/rosegold/03.webp new file mode 100644 index 0000000..8a5afb3 Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/rosegold/03.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/rosegold/04.webp b/src/img/phones/apple-iphone-7-plus/rosegold/04.webp new file mode 100644 index 0000000..58391ef Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/rosegold/04.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/silver/00.webp b/src/img/phones/apple-iphone-7-plus/silver/00.webp new file mode 100644 index 0000000..910db3d Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/silver/00.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/silver/01.webp b/src/img/phones/apple-iphone-7-plus/silver/01.webp new file mode 100644 index 0000000..85b8293 Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/silver/01.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/silver/02.webp b/src/img/phones/apple-iphone-7-plus/silver/02.webp new file mode 100644 index 0000000..f2b8f5e Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/silver/02.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/silver/03.webp b/src/img/phones/apple-iphone-7-plus/silver/03.webp new file mode 100644 index 0000000..4a0737c Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/silver/03.webp differ diff --git a/src/img/phones/apple-iphone-7-plus/silver/04.webp b/src/img/phones/apple-iphone-7-plus/silver/04.webp new file mode 100644 index 0000000..c99a32e Binary files /dev/null and b/src/img/phones/apple-iphone-7-plus/silver/04.webp differ diff --git a/src/img/phones/apple-iphone-7/black/00.webp b/src/img/phones/apple-iphone-7/black/00.webp new file mode 100644 index 0000000..cd42306 Binary files /dev/null and b/src/img/phones/apple-iphone-7/black/00.webp differ diff --git a/src/img/phones/apple-iphone-7/black/01.webp b/src/img/phones/apple-iphone-7/black/01.webp new file mode 100644 index 0000000..31b8f3c Binary files /dev/null and b/src/img/phones/apple-iphone-7/black/01.webp differ diff --git a/src/img/phones/apple-iphone-7/black/02.webp b/src/img/phones/apple-iphone-7/black/02.webp new file mode 100644 index 0000000..3a95162 Binary files /dev/null and b/src/img/phones/apple-iphone-7/black/02.webp differ diff --git a/src/img/phones/apple-iphone-7/black/03.webp b/src/img/phones/apple-iphone-7/black/03.webp new file mode 100644 index 0000000..37767e6 Binary files /dev/null and b/src/img/phones/apple-iphone-7/black/03.webp differ diff --git a/src/img/phones/apple-iphone-7/black/04.webp b/src/img/phones/apple-iphone-7/black/04.webp new file mode 100644 index 0000000..d4ce038 Binary files /dev/null and b/src/img/phones/apple-iphone-7/black/04.webp differ diff --git a/src/img/phones/apple-iphone-7/gold/00.webp b/src/img/phones/apple-iphone-7/gold/00.webp new file mode 100644 index 0000000..0f09450 Binary files /dev/null and b/src/img/phones/apple-iphone-7/gold/00.webp differ diff --git a/src/img/phones/apple-iphone-7/gold/01.webp b/src/img/phones/apple-iphone-7/gold/01.webp new file mode 100644 index 0000000..8aea950 Binary files /dev/null and b/src/img/phones/apple-iphone-7/gold/01.webp differ diff --git a/src/img/phones/apple-iphone-7/gold/02.webp b/src/img/phones/apple-iphone-7/gold/02.webp new file mode 100644 index 0000000..bd8de08 Binary files /dev/null and b/src/img/phones/apple-iphone-7/gold/02.webp differ diff --git a/src/img/phones/apple-iphone-7/gold/03.webp b/src/img/phones/apple-iphone-7/gold/03.webp new file mode 100644 index 0000000..bb2a439 Binary files /dev/null and b/src/img/phones/apple-iphone-7/gold/03.webp differ diff --git a/src/img/phones/apple-iphone-7/gold/04.webp b/src/img/phones/apple-iphone-7/gold/04.webp new file mode 100644 index 0000000..4888960 Binary files /dev/null and b/src/img/phones/apple-iphone-7/gold/04.webp differ diff --git a/src/img/phones/apple-iphone-7/rosegold/00.webp b/src/img/phones/apple-iphone-7/rosegold/00.webp new file mode 100644 index 0000000..8446b36 Binary files /dev/null and b/src/img/phones/apple-iphone-7/rosegold/00.webp differ diff --git a/src/img/phones/apple-iphone-7/rosegold/01.webp b/src/img/phones/apple-iphone-7/rosegold/01.webp new file mode 100644 index 0000000..36829cc Binary files /dev/null and b/src/img/phones/apple-iphone-7/rosegold/01.webp differ diff --git a/src/img/phones/apple-iphone-7/rosegold/02.webp b/src/img/phones/apple-iphone-7/rosegold/02.webp new file mode 100644 index 0000000..4f058cb Binary files /dev/null and b/src/img/phones/apple-iphone-7/rosegold/02.webp differ diff --git a/src/img/phones/apple-iphone-7/rosegold/03.webp b/src/img/phones/apple-iphone-7/rosegold/03.webp new file mode 100644 index 0000000..8a5afb3 Binary files /dev/null and b/src/img/phones/apple-iphone-7/rosegold/03.webp differ diff --git a/src/img/phones/apple-iphone-7/rosegold/04.webp b/src/img/phones/apple-iphone-7/rosegold/04.webp new file mode 100644 index 0000000..58391ef Binary files /dev/null and b/src/img/phones/apple-iphone-7/rosegold/04.webp differ diff --git a/src/img/phones/apple-iphone-7/silver/00.webp b/src/img/phones/apple-iphone-7/silver/00.webp new file mode 100644 index 0000000..910db3d Binary files /dev/null and b/src/img/phones/apple-iphone-7/silver/00.webp differ diff --git a/src/img/phones/apple-iphone-7/silver/01.webp b/src/img/phones/apple-iphone-7/silver/01.webp new file mode 100644 index 0000000..85b8293 Binary files /dev/null and b/src/img/phones/apple-iphone-7/silver/01.webp differ diff --git a/src/img/phones/apple-iphone-7/silver/02.webp b/src/img/phones/apple-iphone-7/silver/02.webp new file mode 100644 index 0000000..f2b8f5e Binary files /dev/null and b/src/img/phones/apple-iphone-7/silver/02.webp differ diff --git a/src/img/phones/apple-iphone-7/silver/03.webp b/src/img/phones/apple-iphone-7/silver/03.webp new file mode 100644 index 0000000..4a0737c Binary files /dev/null and b/src/img/phones/apple-iphone-7/silver/03.webp differ diff --git a/src/img/phones/apple-iphone-7/silver/04.webp b/src/img/phones/apple-iphone-7/silver/04.webp new file mode 100644 index 0000000..c99a32e Binary files /dev/null and b/src/img/phones/apple-iphone-7/silver/04.webp differ diff --git a/src/img/phones/apple-iphone-8/gold/00.webp b/src/img/phones/apple-iphone-8/gold/00.webp new file mode 100644 index 0000000..bb25453 Binary files /dev/null and b/src/img/phones/apple-iphone-8/gold/00.webp differ diff --git a/src/img/phones/apple-iphone-8/gold/01.webp b/src/img/phones/apple-iphone-8/gold/01.webp new file mode 100644 index 0000000..9df5281 Binary files /dev/null and b/src/img/phones/apple-iphone-8/gold/01.webp differ diff --git a/src/img/phones/apple-iphone-8/gold/02.webp b/src/img/phones/apple-iphone-8/gold/02.webp new file mode 100644 index 0000000..a98645c Binary files /dev/null and b/src/img/phones/apple-iphone-8/gold/02.webp differ diff --git a/src/img/phones/apple-iphone-8/gold/03.webp b/src/img/phones/apple-iphone-8/gold/03.webp new file mode 100644 index 0000000..b2a0923 Binary files /dev/null and b/src/img/phones/apple-iphone-8/gold/03.webp differ diff --git a/src/img/phones/apple-iphone-8/silver/00.webp b/src/img/phones/apple-iphone-8/silver/00.webp new file mode 100644 index 0000000..685564a Binary files /dev/null and b/src/img/phones/apple-iphone-8/silver/00.webp differ diff --git a/src/img/phones/apple-iphone-8/silver/01.webp b/src/img/phones/apple-iphone-8/silver/01.webp new file mode 100644 index 0000000..3a4bdcb Binary files /dev/null and b/src/img/phones/apple-iphone-8/silver/01.webp differ diff --git a/src/img/phones/apple-iphone-8/silver/02.webp b/src/img/phones/apple-iphone-8/silver/02.webp new file mode 100644 index 0000000..51173f7 Binary files /dev/null and b/src/img/phones/apple-iphone-8/silver/02.webp differ diff --git a/src/img/phones/apple-iphone-8/silver/03.webp b/src/img/phones/apple-iphone-8/silver/03.webp new file mode 100644 index 0000000..04238a3 Binary files /dev/null and b/src/img/phones/apple-iphone-8/silver/03.webp differ diff --git a/src/img/phones/apple-iphone-8/spacegray/00.webp b/src/img/phones/apple-iphone-8/spacegray/00.webp new file mode 100644 index 0000000..89154f9 Binary files /dev/null and b/src/img/phones/apple-iphone-8/spacegray/00.webp differ diff --git a/src/img/phones/apple-iphone-8/spacegray/01.webp b/src/img/phones/apple-iphone-8/spacegray/01.webp new file mode 100644 index 0000000..072b764 Binary files /dev/null and b/src/img/phones/apple-iphone-8/spacegray/01.webp differ diff --git a/src/img/phones/apple-iphone-8/spacegray/02.webp b/src/img/phones/apple-iphone-8/spacegray/02.webp new file mode 100644 index 0000000..1ed66d8 Binary files /dev/null and b/src/img/phones/apple-iphone-8/spacegray/02.webp differ diff --git a/src/img/phones/apple-iphone-8/spacegray/03.webp b/src/img/phones/apple-iphone-8/spacegray/03.webp new file mode 100644 index 0000000..0a348e9 Binary files /dev/null and b/src/img/phones/apple-iphone-8/spacegray/03.webp differ diff --git a/src/img/phones/apple-iphone-xr/coral/00.webp b/src/img/phones/apple-iphone-xr/coral/00.webp new file mode 100644 index 0000000..d611d25 Binary files /dev/null and b/src/img/phones/apple-iphone-xr/coral/00.webp differ diff --git a/src/img/phones/apple-iphone-xr/coral/01.webp b/src/img/phones/apple-iphone-xr/coral/01.webp new file mode 100644 index 0000000..978e4c6 Binary files /dev/null and b/src/img/phones/apple-iphone-xr/coral/01.webp differ diff --git a/src/img/phones/apple-iphone-xr/coral/02.webp b/src/img/phones/apple-iphone-xr/coral/02.webp new file mode 100644 index 0000000..15ffe1d Binary files /dev/null and b/src/img/phones/apple-iphone-xr/coral/02.webp differ diff --git a/src/img/phones/apple-iphone-xr/red/00.webp b/src/img/phones/apple-iphone-xr/red/00.webp new file mode 100644 index 0000000..c34e54c Binary files /dev/null and b/src/img/phones/apple-iphone-xr/red/00.webp differ diff --git a/src/img/phones/apple-iphone-xr/red/01.webp b/src/img/phones/apple-iphone-xr/red/01.webp new file mode 100644 index 0000000..c250e82 Binary files /dev/null and b/src/img/phones/apple-iphone-xr/red/01.webp differ diff --git a/src/img/phones/apple-iphone-xr/red/02.webp b/src/img/phones/apple-iphone-xr/red/02.webp new file mode 100644 index 0000000..db9ae90 Binary files /dev/null and b/src/img/phones/apple-iphone-xr/red/02.webp differ diff --git a/src/img/phones/apple-iphone-xr/red/03.webp b/src/img/phones/apple-iphone-xr/red/03.webp new file mode 100644 index 0000000..b5785fd Binary files /dev/null and b/src/img/phones/apple-iphone-xr/red/03.webp differ diff --git a/src/img/phones/apple-iphone-xr/red/04.webp b/src/img/phones/apple-iphone-xr/red/04.webp new file mode 100644 index 0000000..0171579 Binary files /dev/null and b/src/img/phones/apple-iphone-xr/red/04.webp differ diff --git a/src/img/phones/apple-iphone-xr/white/00.webp b/src/img/phones/apple-iphone-xr/white/00.webp new file mode 100644 index 0000000..c562905 Binary files /dev/null and b/src/img/phones/apple-iphone-xr/white/00.webp differ diff --git a/src/img/phones/apple-iphone-xr/white/01.webp b/src/img/phones/apple-iphone-xr/white/01.webp new file mode 100644 index 0000000..3c7a237 Binary files /dev/null and b/src/img/phones/apple-iphone-xr/white/01.webp differ diff --git a/src/img/phones/apple-iphone-xr/white/02.webp b/src/img/phones/apple-iphone-xr/white/02.webp new file mode 100644 index 0000000..b90ecb2 Binary files /dev/null and b/src/img/phones/apple-iphone-xr/white/02.webp differ diff --git a/src/img/phones/apple-iphone-xr/white/03.webp b/src/img/phones/apple-iphone-xr/white/03.webp new file mode 100644 index 0000000..9550f57 Binary files /dev/null and b/src/img/phones/apple-iphone-xr/white/03.webp differ diff --git a/src/img/phones/apple-iphone-xr/yellow/00.webp b/src/img/phones/apple-iphone-xr/yellow/00.webp new file mode 100644 index 0000000..c860619 Binary files /dev/null and b/src/img/phones/apple-iphone-xr/yellow/00.webp differ diff --git a/src/img/phones/apple-iphone-xr/yellow/01.webp b/src/img/phones/apple-iphone-xr/yellow/01.webp new file mode 100644 index 0000000..0fc35e2 Binary files /dev/null and b/src/img/phones/apple-iphone-xr/yellow/01.webp differ diff --git a/src/img/phones/apple-iphone-xr/yellow/02.webp b/src/img/phones/apple-iphone-xr/yellow/02.webp new file mode 100644 index 0000000..39ff343 Binary files /dev/null and b/src/img/phones/apple-iphone-xr/yellow/02.webp differ diff --git a/src/img/phones/apple-iphone-xr/yellow/03.webp b/src/img/phones/apple-iphone-xr/yellow/03.webp new file mode 100644 index 0000000..503c9ba Binary files /dev/null and b/src/img/phones/apple-iphone-xr/yellow/03.webp differ diff --git a/src/img/phones/apple-iphone-xr/yellow/04.webp b/src/img/phones/apple-iphone-xr/yellow/04.webp new file mode 100644 index 0000000..fdf8f31 Binary files /dev/null and b/src/img/phones/apple-iphone-xr/yellow/04.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/gold/00.webp b/src/img/phones/apple-iphone-xs-max/gold/00.webp new file mode 100644 index 0000000..a1ed515 Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/gold/00.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/gold/01.webp b/src/img/phones/apple-iphone-xs-max/gold/01.webp new file mode 100644 index 0000000..d735958 Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/gold/01.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/gold/02.webp b/src/img/phones/apple-iphone-xs-max/gold/02.webp new file mode 100644 index 0000000..5395ca1 Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/gold/02.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/gold/03.webp b/src/img/phones/apple-iphone-xs-max/gold/03.webp new file mode 100644 index 0000000..32ed598 Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/gold/03.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/gold/04.webp b/src/img/phones/apple-iphone-xs-max/gold/04.webp new file mode 100644 index 0000000..d4e4652 Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/gold/04.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/silver/00.webp b/src/img/phones/apple-iphone-xs-max/silver/00.webp new file mode 100644 index 0000000..19cf296 Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/silver/00.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/silver/01.webp b/src/img/phones/apple-iphone-xs-max/silver/01.webp new file mode 100644 index 0000000..bd9ae61 Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/silver/01.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/silver/02.webp b/src/img/phones/apple-iphone-xs-max/silver/02.webp new file mode 100644 index 0000000..e6685d5 Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/silver/02.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/silver/03.webp b/src/img/phones/apple-iphone-xs-max/silver/03.webp new file mode 100644 index 0000000..36e4f0d Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/silver/03.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/silver/04.webp b/src/img/phones/apple-iphone-xs-max/silver/04.webp new file mode 100644 index 0000000..ecd5ddd Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/silver/04.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/spacegray/00.webp b/src/img/phones/apple-iphone-xs-max/spacegray/00.webp new file mode 100644 index 0000000..47f2f3f Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/spacegray/00.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/spacegray/01.webp b/src/img/phones/apple-iphone-xs-max/spacegray/01.webp new file mode 100644 index 0000000..aec3abf Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/spacegray/01.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/spacegray/02.webp b/src/img/phones/apple-iphone-xs-max/spacegray/02.webp new file mode 100644 index 0000000..9629dd2 Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/spacegray/02.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/spacegray/03.webp b/src/img/phones/apple-iphone-xs-max/spacegray/03.webp new file mode 100644 index 0000000..f2d823d Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/spacegray/03.webp differ diff --git a/src/img/phones/apple-iphone-xs-max/spacegray/04.webp b/src/img/phones/apple-iphone-xs-max/spacegray/04.webp new file mode 100644 index 0000000..32b6bf8 Binary files /dev/null and b/src/img/phones/apple-iphone-xs-max/spacegray/04.webp differ diff --git a/src/img/phones/apple-iphone-xs/gold/00.webp b/src/img/phones/apple-iphone-xs/gold/00.webp new file mode 100644 index 0000000..a1ed515 Binary files /dev/null and b/src/img/phones/apple-iphone-xs/gold/00.webp differ diff --git a/src/img/phones/apple-iphone-xs/gold/01.webp b/src/img/phones/apple-iphone-xs/gold/01.webp new file mode 100644 index 0000000..d735958 Binary files /dev/null and b/src/img/phones/apple-iphone-xs/gold/01.webp differ diff --git a/src/img/phones/apple-iphone-xs/gold/02.webp b/src/img/phones/apple-iphone-xs/gold/02.webp new file mode 100644 index 0000000..5395ca1 Binary files /dev/null and b/src/img/phones/apple-iphone-xs/gold/02.webp differ diff --git a/src/img/phones/apple-iphone-xs/gold/03.webp b/src/img/phones/apple-iphone-xs/gold/03.webp new file mode 100644 index 0000000..32ed598 Binary files /dev/null and b/src/img/phones/apple-iphone-xs/gold/03.webp differ diff --git a/src/img/phones/apple-iphone-xs/gold/04.webp b/src/img/phones/apple-iphone-xs/gold/04.webp new file mode 100644 index 0000000..d4e4652 Binary files /dev/null and b/src/img/phones/apple-iphone-xs/gold/04.webp differ diff --git a/src/img/phones/apple-iphone-xs/spacegray/00.webp b/src/img/phones/apple-iphone-xs/spacegray/00.webp new file mode 100644 index 0000000..47f2f3f Binary files /dev/null and b/src/img/phones/apple-iphone-xs/spacegray/00.webp differ diff --git a/src/img/phones/apple-iphone-xs/spacegray/01.webp b/src/img/phones/apple-iphone-xs/spacegray/01.webp new file mode 100644 index 0000000..aec3abf Binary files /dev/null and b/src/img/phones/apple-iphone-xs/spacegray/01.webp differ diff --git a/src/img/phones/apple-iphone-xs/spacegray/02.webp b/src/img/phones/apple-iphone-xs/spacegray/02.webp new file mode 100644 index 0000000..9629dd2 Binary files /dev/null and b/src/img/phones/apple-iphone-xs/spacegray/02.webp differ diff --git a/src/img/phones/apple-iphone-xs/spacegray/03.webp b/src/img/phones/apple-iphone-xs/spacegray/03.webp new file mode 100644 index 0000000..f2d823d Binary files /dev/null and b/src/img/phones/apple-iphone-xs/spacegray/03.webp differ diff --git a/src/img/phones/apple-iphone-xs/spacegray/04.webp b/src/img/phones/apple-iphone-xs/spacegray/04.webp new file mode 100644 index 0000000..32b6bf8 Binary files /dev/null and b/src/img/phones/apple-iphone-xs/spacegray/04.webp differ diff --git a/src/img/tablets/apple-ipad-10-2-2020/gold/00.webp b/src/img/tablets/apple-ipad-10-2-2020/gold/00.webp new file mode 100644 index 0000000..514f096 Binary files /dev/null and b/src/img/tablets/apple-ipad-10-2-2020/gold/00.webp differ diff --git a/src/img/tablets/apple-ipad-10-2-2020/gold/01.webp b/src/img/tablets/apple-ipad-10-2-2020/gold/01.webp new file mode 100644 index 0000000..7c05e38 Binary files /dev/null and b/src/img/tablets/apple-ipad-10-2-2020/gold/01.webp differ diff --git a/src/img/tablets/apple-ipad-10-2-2020/gold/02.webp b/src/img/tablets/apple-ipad-10-2-2020/gold/02.webp new file mode 100644 index 0000000..bb685b9 Binary files /dev/null and b/src/img/tablets/apple-ipad-10-2-2020/gold/02.webp differ diff --git a/src/img/tablets/apple-ipad-10-2-2020/gold/03.webp b/src/img/tablets/apple-ipad-10-2-2020/gold/03.webp new file mode 100644 index 0000000..75de16a Binary files /dev/null and b/src/img/tablets/apple-ipad-10-2-2020/gold/03.webp differ diff --git a/src/img/tablets/apple-ipad-10-2-2020/silver/00.webp b/src/img/tablets/apple-ipad-10-2-2020/silver/00.webp new file mode 100644 index 0000000..f4c7be8 Binary files /dev/null and b/src/img/tablets/apple-ipad-10-2-2020/silver/00.webp differ diff --git a/src/img/tablets/apple-ipad-10-2-2020/silver/01.webp b/src/img/tablets/apple-ipad-10-2-2020/silver/01.webp new file mode 100644 index 0000000..bbd874f Binary files /dev/null and b/src/img/tablets/apple-ipad-10-2-2020/silver/01.webp differ diff --git a/src/img/tablets/apple-ipad-10-2-2020/silver/02.webp b/src/img/tablets/apple-ipad-10-2-2020/silver/02.webp new file mode 100644 index 0000000..8948210 Binary files /dev/null and b/src/img/tablets/apple-ipad-10-2-2020/silver/02.webp differ diff --git a/src/img/tablets/apple-ipad-10-2-2020/silver/03.webp b/src/img/tablets/apple-ipad-10-2-2020/silver/03.webp new file mode 100644 index 0000000..3ee4855 Binary files /dev/null and b/src/img/tablets/apple-ipad-10-2-2020/silver/03.webp differ diff --git a/src/img/tablets/apple-ipad-10-2-2020/spacegray/00.webp b/src/img/tablets/apple-ipad-10-2-2020/spacegray/00.webp new file mode 100644 index 0000000..bfcea4e Binary files /dev/null and b/src/img/tablets/apple-ipad-10-2-2020/spacegray/00.webp differ diff --git a/src/img/tablets/apple-ipad-10-2-2020/spacegray/01.webp b/src/img/tablets/apple-ipad-10-2-2020/spacegray/01.webp new file mode 100644 index 0000000..2a1e4b9 Binary files /dev/null and b/src/img/tablets/apple-ipad-10-2-2020/spacegray/01.webp differ diff --git a/src/img/tablets/apple-ipad-10-2-2020/spacegray/02.webp b/src/img/tablets/apple-ipad-10-2-2020/spacegray/02.webp new file mode 100644 index 0000000..8962e67 Binary files /dev/null and b/src/img/tablets/apple-ipad-10-2-2020/spacegray/02.webp differ diff --git a/src/img/tablets/apple-ipad-10-2-2020/spacegray/03.webp b/src/img/tablets/apple-ipad-10-2-2020/spacegray/03.webp new file mode 100644 index 0000000..9785a6b Binary files /dev/null and b/src/img/tablets/apple-ipad-10-2-2020/spacegray/03.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/green/00.webp b/src/img/tablets/apple-ipad-air-4th-gen/green/00.webp new file mode 100644 index 0000000..6e964c4 Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/green/00.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/green/02.webp b/src/img/tablets/apple-ipad-air-4th-gen/green/02.webp new file mode 100644 index 0000000..774d80a Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/green/02.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/green/03.webp b/src/img/tablets/apple-ipad-air-4th-gen/green/03.webp new file mode 100644 index 0000000..e23831b Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/green/03.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/green/04.webp b/src/img/tablets/apple-ipad-air-4th-gen/green/04.webp new file mode 100644 index 0000000..a647100 Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/green/04.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/rose-gold/00.webp b/src/img/tablets/apple-ipad-air-4th-gen/rose-gold/00.webp new file mode 100644 index 0000000..914a418 Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/rose-gold/00.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/rose-gold/01.webp b/src/img/tablets/apple-ipad-air-4th-gen/rose-gold/01.webp new file mode 100644 index 0000000..33385f8 Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/rose-gold/01.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/rose-gold/02.webp b/src/img/tablets/apple-ipad-air-4th-gen/rose-gold/02.webp new file mode 100644 index 0000000..a3833d2 Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/rose-gold/02.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/rose-gold/03.webp b/src/img/tablets/apple-ipad-air-4th-gen/rose-gold/03.webp new file mode 100644 index 0000000..3184349 Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/rose-gold/03.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/silver/00.webp b/src/img/tablets/apple-ipad-air-4th-gen/silver/00.webp new file mode 100644 index 0000000..86322f8 Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/silver/00.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/silver/01.webp b/src/img/tablets/apple-ipad-air-4th-gen/silver/01.webp new file mode 100644 index 0000000..6cba083 Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/silver/01.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/silver/02.webp b/src/img/tablets/apple-ipad-air-4th-gen/silver/02.webp new file mode 100644 index 0000000..0a9b1d4 Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/silver/02.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/silver/03.webp b/src/img/tablets/apple-ipad-air-4th-gen/silver/03.webp new file mode 100644 index 0000000..ee320bd Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/silver/03.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/sky-blue/00.webp b/src/img/tablets/apple-ipad-air-4th-gen/sky-blue/00.webp new file mode 100644 index 0000000..11dbca9 Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/sky-blue/00.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/sky-blue/01.webp b/src/img/tablets/apple-ipad-air-4th-gen/sky-blue/01.webp new file mode 100644 index 0000000..21ac24a Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/sky-blue/01.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/sky-blue/02.webp b/src/img/tablets/apple-ipad-air-4th-gen/sky-blue/02.webp new file mode 100644 index 0000000..6a3cfdb Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/sky-blue/02.webp differ diff --git a/src/img/tablets/apple-ipad-air-4th-gen/sky-blue/03.webp b/src/img/tablets/apple-ipad-air-4th-gen/sky-blue/03.webp new file mode 100644 index 0000000..60d719d Binary files /dev/null and b/src/img/tablets/apple-ipad-air-4th-gen/sky-blue/03.webp differ diff --git a/src/img/tablets/apple-ipad-mini-5th-gen/gold/00.webp b/src/img/tablets/apple-ipad-mini-5th-gen/gold/00.webp new file mode 100644 index 0000000..7e2725b Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-5th-gen/gold/00.webp differ diff --git a/src/img/tablets/apple-ipad-mini-5th-gen/gold/01.webp b/src/img/tablets/apple-ipad-mini-5th-gen/gold/01.webp new file mode 100644 index 0000000..2220ddb Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-5th-gen/gold/01.webp differ diff --git a/src/img/tablets/apple-ipad-mini-5th-gen/silver/00.webp b/src/img/tablets/apple-ipad-mini-5th-gen/silver/00.webp new file mode 100644 index 0000000..db7fdb1 Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-5th-gen/silver/00.webp differ diff --git a/src/img/tablets/apple-ipad-mini-5th-gen/silver/01.webp b/src/img/tablets/apple-ipad-mini-5th-gen/silver/01.webp new file mode 100644 index 0000000..1c197da Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-5th-gen/silver/01.webp differ diff --git a/src/img/tablets/apple-ipad-mini-5th-gen/spacegray/00.webp b/src/img/tablets/apple-ipad-mini-5th-gen/spacegray/00.webp new file mode 100644 index 0000000..aa8bc34 Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-5th-gen/spacegray/00.webp differ diff --git a/src/img/tablets/apple-ipad-mini-5th-gen/spacegray/01.webp b/src/img/tablets/apple-ipad-mini-5th-gen/spacegray/01.webp new file mode 100644 index 0000000..1043897 Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-5th-gen/spacegray/01.webp differ diff --git a/src/img/tablets/apple-ipad-mini-6th-gen/pink/00.webp b/src/img/tablets/apple-ipad-mini-6th-gen/pink/00.webp new file mode 100644 index 0000000..644c272 Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-6th-gen/pink/00.webp differ diff --git a/src/img/tablets/apple-ipad-mini-6th-gen/pink/01.webp b/src/img/tablets/apple-ipad-mini-6th-gen/pink/01.webp new file mode 100644 index 0000000..b92c119 Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-6th-gen/pink/01.webp differ diff --git a/src/img/tablets/apple-ipad-mini-6th-gen/pink/02.webp b/src/img/tablets/apple-ipad-mini-6th-gen/pink/02.webp new file mode 100644 index 0000000..e588caa Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-6th-gen/pink/02.webp differ diff --git a/src/img/tablets/apple-ipad-mini-6th-gen/spacegray/00.webp b/src/img/tablets/apple-ipad-mini-6th-gen/spacegray/00.webp new file mode 100644 index 0000000..cbffbcb Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-6th-gen/spacegray/00.webp differ diff --git a/src/img/tablets/apple-ipad-mini-6th-gen/spacegray/01.webp b/src/img/tablets/apple-ipad-mini-6th-gen/spacegray/01.webp new file mode 100644 index 0000000..20271f2 Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-6th-gen/spacegray/01.webp differ diff --git a/src/img/tablets/apple-ipad-mini-6th-gen/spacegray/02.webp b/src/img/tablets/apple-ipad-mini-6th-gen/spacegray/02.webp new file mode 100644 index 0000000..cad38fc Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-6th-gen/spacegray/02.webp differ diff --git a/src/img/tablets/apple-ipad-mini-6th-gen/starlight/00.webp b/src/img/tablets/apple-ipad-mini-6th-gen/starlight/00.webp new file mode 100644 index 0000000..d2186e9 Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-6th-gen/starlight/00.webp differ diff --git a/src/img/tablets/apple-ipad-mini-6th-gen/starlight/01.webp b/src/img/tablets/apple-ipad-mini-6th-gen/starlight/01.webp new file mode 100644 index 0000000..99e228f Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-6th-gen/starlight/01.webp differ diff --git a/src/img/tablets/apple-ipad-mini-6th-gen/starlight/02.webp b/src/img/tablets/apple-ipad-mini-6th-gen/starlight/02.webp new file mode 100644 index 0000000..190d6c6 Binary files /dev/null and b/src/img/tablets/apple-ipad-mini-6th-gen/starlight/02.webp differ diff --git a/src/img/tablets/apple-ipad-pro-11-2021/silver/00.webp b/src/img/tablets/apple-ipad-pro-11-2021/silver/00.webp new file mode 100644 index 0000000..fa9389d Binary files /dev/null and b/src/img/tablets/apple-ipad-pro-11-2021/silver/00.webp differ diff --git a/src/img/tablets/apple-ipad-pro-11-2021/silver/01.webp b/src/img/tablets/apple-ipad-pro-11-2021/silver/01.webp new file mode 100644 index 0000000..65c1447 Binary files /dev/null and b/src/img/tablets/apple-ipad-pro-11-2021/silver/01.webp differ diff --git a/src/img/tablets/apple-ipad-pro-11-2021/silver/02.webp b/src/img/tablets/apple-ipad-pro-11-2021/silver/02.webp new file mode 100644 index 0000000..7f33838 Binary files /dev/null and b/src/img/tablets/apple-ipad-pro-11-2021/silver/02.webp differ diff --git a/src/img/tablets/apple-ipad-pro-11-2021/spacegray/00.webp b/src/img/tablets/apple-ipad-pro-11-2021/spacegray/00.webp new file mode 100644 index 0000000..b2acb50 Binary files /dev/null and b/src/img/tablets/apple-ipad-pro-11-2021/spacegray/00.webp differ diff --git a/src/img/tablets/apple-ipad-pro-11-2021/spacegray/01.webp b/src/img/tablets/apple-ipad-pro-11-2021/spacegray/01.webp new file mode 100644 index 0000000..f4a267b Binary files /dev/null and b/src/img/tablets/apple-ipad-pro-11-2021/spacegray/01.webp differ diff --git a/src/img/tablets/apple-ipad-pro-11-2021/spacegray/02.webp b/src/img/tablets/apple-ipad-pro-11-2021/spacegray/02.webp new file mode 100644 index 0000000..7076052 Binary files /dev/null and b/src/img/tablets/apple-ipad-pro-11-2021/spacegray/02.webp differ diff --git a/src/utils/types/Accessory.ts b/src/utils/types/Accessory.ts new file mode 100644 index 0000000..4e8191f --- /dev/null +++ b/src/utils/types/Accessory.ts @@ -0,0 +1,21 @@ +import { DeviceDescription } from './DeviceDescription'; + +export interface Accessory { + id: string; + category: string; + namespaceId: string; + name: string; + capacityAvailable: string[]; + capacity: string; + priceRegular: number; + priceDiscount: number; + colorsAvailable: string[]; + color: string; + images: string[]; + description: DeviceDescription[]; + screen: string; + resolution: string; + processor: string; + ram: string; + cell: string[]; +} diff --git a/src/utils/types/DeviceDescription.ts b/src/utils/types/DeviceDescription.ts new file mode 100644 index 0000000..a2cb937 --- /dev/null +++ b/src/utils/types/DeviceDescription.ts @@ -0,0 +1,4 @@ +export interface DeviceDescription { + title: string; + text: string[]; +} diff --git a/src/utils/types/Phone.ts b/src/utils/types/Phone.ts new file mode 100644 index 0000000..a8bb9a9 --- /dev/null +++ b/src/utils/types/Phone.ts @@ -0,0 +1,23 @@ +import { DeviceDescription } from './DeviceDescription'; + +export interface Phone { + id: string; + category: string; + namespaceId: string; + name: string; + capacityAvailable: string[]; + capacity: string; + priceRegular: number; + priceDiscount: number; + colorsAvailable: string[]; + color: string; + images: string; + description: DeviceDescription[]; + screen: string; + resolution: string; + processor: string; + ram: string; + camera: string; + zoom: string; + cell: string[]; +} diff --git a/src/utils/types/Product.ts b/src/utils/types/Product.ts new file mode 100644 index 0000000..052d1dc --- /dev/null +++ b/src/utils/types/Product.ts @@ -0,0 +1,14 @@ +export interface Product { + id: number; + category: string; + itemId: string; + name: string; + fullPrice: number; + price: number; + screen: string; + capacity: string; + color: string; + ram: string; + year: number; + image: string; +} diff --git a/src/utils/types/Tablet.ts b/src/utils/types/Tablet.ts new file mode 100644 index 0000000..5a90454 --- /dev/null +++ b/src/utils/types/Tablet.ts @@ -0,0 +1,23 @@ +import { DeviceDescription } from './DeviceDescription'; + +export interface Tablet { + id: string; + category: string; + namespaceId: string; + name: string; + capacityAvailable: string[]; + capacity: string; + priceRegular: number; + priceDiscount: number; + colorsAvailable: string[]; + color: string; + images: string; + description: DeviceDescription[]; + screen: string; + resolution: string; + processor: string; + ram: string; + camera: string; + zoom: string; + cell: string[]; +}