Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API and base slices are done #24

Merged
merged 6 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
26 changes: 26 additions & 0 deletions src/api/api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { Accessory } from '../utils/types/Accessory';
import { Phone } from '../utils/types/Phone';
import { Product } from '../utils/types/Product';
import { Tablet } from '../utils/types/Tablet';

const BASE_URL =
'https://raw.githubusercontent.com/mate-academy/react_phone-catalog/f064fa3751d4adbc9a531a51805d593af585860b/public/';

function wait(delay: number): Promise<void> {
return new Promise(resolve => {
setTimeout(resolve, delay);
});
}

function get<T>(url: string): Promise<T> {
const fullUrl = BASE_URL + url + '.json';

return wait(300)
.then(() => fetch(fullUrl))
.then(res => res.json());
NIKaragu marked this conversation as resolved.
Show resolved Hide resolved
}

export const getPhones = () => get<Phone[]>('/api/phones');
export const getTablets = () => get<Tablet[]>('/api/tablets');
export const getProducts = () => get<Product[]>('/api/products');
export const getAccessories = () => get<Accessory[]>('/api/accessories');
48 changes: 48 additions & 0 deletions src/app/slices/accessoriesSlice.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import { PayloadAction, createAsyncThunk, createSlice } from '@reduxjs/toolkit';
import { Accessory } from '../../utils/types/Accessory';
import { getAccessories } from '../../api/api';

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: (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 { setAccessories } = accessoriesSlice.actions;
47 changes: 47 additions & 0 deletions src/app/slices/phonesSlice.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import { PayloadAction, createSlice, createAsyncThunk } from '@reduxjs/toolkit';
import { Phone } from '../../utils/types/Phone';
import { getPhones } from '../../api/api';

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: (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 { setPhones } = phonesSlice.actions;
47 changes: 47 additions & 0 deletions src/app/slices/productsSlice.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import { PayloadAction, createAsyncThunk, createSlice } from '@reduxjs/toolkit';
import { Product } from '../../utils/types/Product';
import { getProducts } from '../../api/api';

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: (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 { setProducts } = productsSlice.actions;
47 changes: 47 additions & 0 deletions src/app/slices/tabletsSlice.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import { PayloadAction, createAsyncThunk, createSlice } from '@reduxjs/toolkit';
import { Tablet } from '../../utils/types/Tablet';
import { getTablets } from '../../api/api';

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: (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 { setTablets } = tabletsSlice.actions;
12 changes: 11 additions & 1 deletion src/app/store.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
import { combineSlices, configureStore } from '@reduxjs/toolkit';
import { accessoriesSlice } from './slices/accessoriesSlice';
import { phonesSlice } from './slices/phonesSlice';
import { productsSlice } from './slices/productsSlice';
import { tabletsSlice } from './slices/tabletsSlice';

const rootReducer = combineSlices(
accessoriesSlice,
phonesSlice,
productsSlice,
tabletsSlice,
);

const rootReducer = combineSlices();
export const store = configureStore({
reducer: rootReducer,
});
Expand Down
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.
Loading
Loading