diff --git a/components/ui/Text/Text.module.css b/components/ui/Text/Text.module.css
index 6ccd57a37..61b2d6955 100644
--- a/components/ui/Text/Text.module.css
+++ b/components/ui/Text/Text.module.css
@@ -11,5 +11,5 @@
}
.sectionHeading {
- @apply pt-1 pb-4 text-base leading-7 text-base tracking-wide uppercase border-b border-accents-2;
+ @apply pt-1 pb-2 text-base font-semibold leading-7 text-base tracking-wider uppercase border-b border-accents-2 mb-3;
}
diff --git a/pages/cart.tsx b/pages/cart.tsx
index d9d669ab7..7fee8176d 100644
--- a/pages/cart.tsx
+++ b/pages/cart.tsx
@@ -75,7 +75,7 @@ export default function Cart({}: InferGetStaticPropsType<
My Cart
Review your Order
-
+
{items.map((item) => (
))}
-
-
- Before you leave, take a look at these items. We picked them just
- for you
-
-
- {[1, 2, 3, 4, 5, 6].map((x) => (
-
- ))}
+
+
+ Before you leave, take a look at these items. We picked them
+ just for you
+
+
+ {[1, 2, 3, 4, 5, 6].map((x) => (
+
+ ))}
+
)}
diff --git a/pages/profile.tsx b/pages/profile.tsx
index a24161221..a89bfec98 100644
--- a/pages/profile.tsx
+++ b/pages/profile.tsx
@@ -1,10 +1,24 @@
import { Layout } from '@components/core'
import { Container, Text } from '@components/ui'
-
+import useCustomer from '@lib/bigcommerce/use-customer'
export default function Profile() {
+ const { data } = useCustomer()
+ console.log(data)
return (
My Profile
+
+
+ Full Name
+
+ {data.firstName} {data.lastName}
+
+
+
+ Email
+ {data.email}
+
+
)
}