-
+
{shipperName}
diff --git a/src/app/profile/page.tsx b/src/app/profile/page.tsx
index b035d75..261a80c 100644
--- a/src/app/profile/page.tsx
+++ b/src/app/profile/page.tsx
@@ -163,7 +163,7 @@ const ProfilePage = () => {
diff --git a/src/components/CartControls.tsx b/src/components/CartControls.tsx
index 82681f1..0b8148d 100644
--- a/src/components/CartControls.tsx
+++ b/src/components/CartControls.tsx
@@ -1,5 +1,6 @@
"use client";
+import { PRIMARY_COLOR } from "@/config/const";
import { Add, Minus, Trash } from "iconsax-react";
import React from "react";
@@ -18,7 +19,6 @@ export default function CartControls(props: CartControlsProps) {
const canDecrement = quantity > min;
const canIncrement = typeof max === "number" ? quantity < max : true;
- const orange = "blue";
return (
@@ -30,9 +30,9 @@ export default function CartControls(props: CartControlsProps) {
disabled={!canIncrement}
aria-label="increase quantity"
>
-
+
-
+
{quantity}
diff --git a/src/config/const.ts b/src/config/const.ts
index 576fa4c..fb72f0e 100644
--- a/src/config/const.ts
+++ b/src/config/const.ts
@@ -3,4 +3,4 @@ export const REFRESH_TOKEN_NAME = "sh_refresh_token";
export const BASE_URL = "https://shop-api.dev.danakcorp.com";
// export const BASE_URL = "http://192.168.1.111:4000";
-export const PRIMARY_COLOR = "#015699";
+export const PRIMARY_COLOR = "#DA2129";
diff --git a/src/share/Header.tsx b/src/share/Header.tsx
index 977b089..c121d0b 100644
--- a/src/share/Header.tsx
+++ b/src/share/Header.tsx
@@ -8,6 +8,7 @@ import { useSharedStore } from './store/sharedStore'
import { getToken } from '@/config/func'
import Account from './components/Account'
import Cart from './components/Cart'
+import Image from 'next/image'
const Header: FC = () => {
@@ -40,7 +41,15 @@ const Header: FC = () => {