Skip to content

Commit

Permalink
implemented with asyncThunk and loaded addition data
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita committed Sep 19, 2024
1 parent d727d81 commit c8ed366
Show file tree
Hide file tree
Showing 341 changed files with 234 additions and 16 deletions.
42 changes: 38 additions & 4 deletions src/app/slices/accessoriesSlice.ts
Original file line number Diff line number Diff line change
@@ -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<Accessory[]>) => action.payload,
setAccessories: (state, action: PayloadAction<Accessory[]>) => {
state.accessories = action.payload;
},
},
extraReducers(builder) {
builder.addCase(loadAccessories.pending, state => {
state.isAccessoryLoading = true;
});
builder.addCase(
loadAccessories.fulfilled,
(state, action: PayloadAction<Accessory[]>) => {
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;
41 changes: 37 additions & 4 deletions src/app/slices/phonesSlice.ts
Original file line number Diff line number Diff line change
@@ -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<Phone[]>) => action.payload,
setPhones: (state, action: PayloadAction<Phone[]>) => {
state.phones = action.payload;
},
},
extraReducers(builder) {
builder.addCase(loadPhones.pending, state => {
state.isPhonesLoading = true;
});
builder.addCase(
loadPhones.fulfilled,
(state, action: PayloadAction<Phone[]>) => {
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;
41 changes: 37 additions & 4 deletions src/app/slices/productsSlice.ts
Original file line number Diff line number Diff line change
@@ -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<Product[]>) => action.payload,
setProducts: (state, action: PayloadAction<Product[]>) => {
state.products = action.payload;
},
},
extraReducers(builder) {
builder.addCase(loadProducts.pending, state => {
state.isProductsLoading = true;
});
builder.addCase(
loadProducts.fulfilled,
(state, action: PayloadAction<Product[]>) => {
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;
41 changes: 37 additions & 4 deletions src/app/slices/tabletsSlice.ts
Original file line number Diff line number Diff line change
@@ -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<Tablet[]>) => action.payload,
setTablets: (state, action: PayloadAction<Tablet[]>) => {
state.tablets = action.payload;
},
},
extraReducers(builder) {
builder.addCase(loadTablets.pending, state => {
state.isTabletsLoading = true;
});
builder.addCase(
loadTablets.fulfilled,
(state, action: PayloadAction<Tablet[]>) => {
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;
Binary file added src/img/accessories/apple-watch-se/gold/00.webp
Binary file not shown.
Binary file added src/img/accessories/apple-watch-se/gold/01.webp
Binary file not shown.
Binary file added src/img/accessories/apple-watch-se/gold/02.webp
Binary file not shown.
Binary file added src/img/accessories/apple-watch-se/silver/00.webp
Binary file not shown.
Binary file not shown.
Binary file added src/img/accessories/apple-watch-se/silver/02.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/img/banners/banner-accessories.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/img/banners/banner-phones.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/img/banners/banner-tablets.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/img/banners/cart-is-empty.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/img/banners/category-accessories.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/img/banners/category-accessories.webp
Binary file not shown.
Binary file added src/img/banners/category-phones.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/img/banners/category-phones.webp
Binary file not shown.
Binary file added src/img/banners/category-tablets.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/img/banners/category-tablets.webp
Binary file not shown.
Binary file added src/img/banners/page-not-found.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/img/banners/picthree.bdd2e0fc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/img/banners/product-not-found.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11-pro/gold/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11-pro/gold/01.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11-pro/silver/00.webp
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11-pro/silver/02.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/black/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/black/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/black/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/black/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/black/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/green/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/green/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/green/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/green/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/green/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/purple/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/purple/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/purple/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/purple/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/purple/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/red/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/red/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/red/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/red/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/red/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/white/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/white/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/white/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/white/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/white/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/yellow/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/yellow/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/yellow/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/yellow/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-11/yellow/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/black/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/black/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/black/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/black/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/purple/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/purple/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/purple/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/purple/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/red/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/red/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/red/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/red/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/white/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/white/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/white/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-12/white/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-13-mini/blue/00.webp
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-13-mini/blue/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-13-mini/blue/03.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-13-mini/pink/00.webp
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-13-mini/pink/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-13-mini/pink/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-13-mini/white/00.webp
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-13-mini/white/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-13-mini/white/03.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14-pro/gold/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14-pro/gold/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14-pro/gold/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14-pro/gold/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14-pro/gold/04.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/midnight/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/midnight/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/midnight/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/midnight/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/midnight/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/purple/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/purple/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/purple/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/purple/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/purple/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/yellow/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/yellow/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/yellow/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/yellow/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-14/yellow/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7-plus/black/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7-plus/black/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7-plus/black/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7-plus/black/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7-plus/black/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7-plus/gold/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7-plus/gold/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7-plus/gold/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7-plus/gold/03.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7-plus/silver/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7-plus/silver/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7-plus/silver/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7-plus/silver/03.webp
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/black/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/black/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/black/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/black/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/black/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/gold/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/gold/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/gold/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/gold/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/gold/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/rosegold/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/rosegold/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/rosegold/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/rosegold/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/rosegold/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/silver/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/silver/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/silver/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/silver/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-7/silver/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-8/gold/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-8/gold/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-8/gold/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-8/gold/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-8/silver/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-8/silver/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-8/silver/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-8/silver/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-8/spacegray/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-8/spacegray/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-8/spacegray/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-8/spacegray/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/coral/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/coral/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/coral/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/red/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/red/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/red/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/red/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/red/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/white/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/white/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/white/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/white/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/yellow/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/yellow/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/yellow/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/yellow/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xr/yellow/04.webp
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs-max/gold/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs-max/gold/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs-max/gold/03.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs-max/silver/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs-max/silver/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs-max/silver/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs-max/silver/04.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs/gold/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs/gold/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs/gold/02.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs/gold/03.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs/gold/04.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs/spacegray/00.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs/spacegray/01.webp
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs/spacegray/02.webp
Binary file not shown.
Binary file not shown.
Binary file added src/img/phones/apple-iphone-xs/spacegray/04.webp
Binary file not shown.
Binary file added src/img/tablets/apple-ipad-10-2-2020/gold/00.webp
Binary file not shown.
Binary file not shown.
Binary file added src/img/tablets/apple-ipad-10-2-2020/gold/02.webp
Binary file not shown.
Binary file added src/img/tablets/apple-ipad-10-2-2020/gold/03.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit c8ed366

Please sign in to comment.