From bf5b3ab5a68cbdd9499586bb80512c48880000ab Mon Sep 17 00:00:00 2001 From: Celine Choi Date: Wed, 11 Oct 2023 19:48:24 -0700 Subject: [PATCH] removed fortawesome package and replaced icons --- src/app/storefront/Shopping_Cart_01.png | Bin 0 -> 633 bytes src/app/storefront/User_01.png | Bin 0 -> 585 bytes src/app/storefront/page.tsx | 9 +++++---- src/app/storefront/styles.ts | 7 ++++--- 4 files changed, 9 insertions(+), 7 deletions(-) create mode 100644 src/app/storefront/Shopping_Cart_01.png create mode 100644 src/app/storefront/User_01.png diff --git a/src/app/storefront/Shopping_Cart_01.png b/src/app/storefront/Shopping_Cart_01.png new file mode 100644 index 0000000000000000000000000000000000000000..9bf09887ada395900d3fc45e0a9ef77eb9ed0f3c GIT binary patch literal 633 zcmV-<0*3vGP)A+MFQb9}wF%<-!`O!hr0ZIix2hJ})>PRHwAJ84T6US&mLKJ)yXQ7F;g6J3P4A~!=fWMq>vB3=!FnGiT$ zM#R5BDV{&KcXJBVMToJ6ssiT+WW1OOnu18gWCtOmV+)DJmi$P@wuKmDFLCQ$x-=_B zQQ5jz+*tB_Gr#Jqa3!ICaLLy_IRjP_+gS2-bt0))AQu@Xmz5E!6sDAq@0o!yltKL! z$SreTp>$wkO6k_NeT@qI5Qf7ci|DiVgm*|8e!WnrWilP{54w>*Hq=0-v9?P;U$PvyYKwtrtSxhnzc_0UzyBO~f zFpzr)2YjPyLSslW91dx_-M&+3@D@P6MbZ|VRM{jH8gOdF`E!R|*2hj`K>aZh{nTM+ zL?;v)^)iRHWw@+FDFGs~6Nt5aXcBAD^A5XY$37^D`s~ltZ2v*tFXVAahX8`CWWP81 zm_`*+dC%Wp$N^3jQ}TfWBsLa}~G=1;n_t^Ijz6{I4LfyviZm zs<|MQLW)<1`%9w8-1uB_nh1;`UvmD}T`iiwt9rrX#(urt&^$85GOUg2JGvT{nHaXc@$8xe$f=@4){{MnMYK35UiH Xf{mH=w)Ge{00000NkvXXu0mjf?aTki literal 0 HcmV?d00001 diff --git a/src/app/storefront/page.tsx b/src/app/storefront/page.tsx index a624b6c0..d6a8338e 100644 --- a/src/app/storefront/page.tsx +++ b/src/app/storefront/page.tsx @@ -1,8 +1,9 @@ 'use client'; import React from 'react'; -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faShoppingCart, faUser } from '@fortawesome/free-solid-svg-icons'; +import Image from 'next/image'; +import ShoppingCartImage from './Shopping_Cart_01.png'; +import UserProfileImage from './User_01.png'; import { GlobalStyle, Button } from './styles'; function handleCheckoutClick() { @@ -18,11 +19,11 @@ export default function App() {
diff --git a/src/app/storefront/styles.ts b/src/app/storefront/styles.ts index 051a10c0..f2bc5596 100644 --- a/src/app/storefront/styles.ts +++ b/src/app/storefront/styles.ts @@ -7,7 +7,8 @@ export const GlobalStyle = createGlobalStyle` `; export const Button = styled.button` - margin: 10px; + margin-top: 30px; + margin-right: 25px; color: black; text-align: center; font-family: sans-serif; @@ -15,8 +16,8 @@ export const Button = styled.button` font-style: normal; font-weight: normal; line-height: normal; - width: 50px; - height: 50px; + width: 70px; + height: 70px; background: transparent; border: transparent; float: right;