diff --git a/.env b/.env
new file mode 100644
index 000000000..a094f95df
--- /dev/null
+++ b/.env
@@ -0,0 +1,2 @@
+BIGCOMMERCE_STOREFRONT_API_URL=https://store-qfzerv205w.mybigcommerce.com/graphql
+BIGCOMMERCE_STOREFRONT_API_TOKEN=eyJ0eXAiOiJKV1QiLCJhbGciOiJFUzI1NiJ9.eyJlYXQiOjIxMzM0NDM2NjEsInN1Yl90eXBlIjoyLCJ0b2tlbl90eXBlIjoxLCJjb3JzIjpbImh0dHBzOi8vd3d3LnRlc3QuY29tIl0sImNpZCI6MSwiaWF0IjoxNjAwODQyOTk0LCJzdWIiOiJja3I2ZXZ6bjkyNzhjMHB3NWlhdmIzY3A0bDFvaXAxIiwic2lkIjoxMDAxNDEyMjAyLCJpc3MiOiJCQyJ9.RvBvNZ8SPC5MFckploPW1VvD-XGy6pGHENLIxCinguX9P2eNrhrDp9t821Ng2rw7O0eLMKB7YuDF4E15MK13tA
\ No newline at end of file
diff --git a/.env.example b/.env.example
deleted file mode 100644
index 9dff2e5ea..000000000
--- a/.env.example
+++ /dev/null
@@ -1,7 +0,0 @@
-BIGCOMMERCE_STOREFRONT_API_URL=https://your-site.mybigcommerce.com/graphql
-BIGCOMMERCE_STOREFRONT_API_TOKEN=
-BIGCOMMERCE_STORE_API_URL=https://api.bigcommerce.com/stores/xxxxxxxxxxx
-BIGCOMMERCE_STORE_API_CLIENT_ID=
-BIGCOMMERCE_STORE_API_SECRET=
-BIGCOMMERCE_STORE_API_TOKEN=
-BIGCOMMERCE_TOKEN_SECRET="this-is-a-secret-value-with-at-least-32-characters"
\ No newline at end of file
diff --git a/components/cart/CartSidebarView/CartSidebarView.tsx b/components/cart/CartSidebarView/CartSidebarView.tsx
index f392a0890..b65d9498c 100644
--- a/components/cart/CartSidebarView/CartSidebarView.tsx
+++ b/components/cart/CartSidebarView/CartSidebarView.tsx
@@ -1,33 +1,34 @@
import React, { FunctionComponent } from "react";
-// import s from "./CartSidebarView.module.css";
+import { UserNav } from "@components/core";
import { Button } from "@components/ui";
import { Trash, Cross } from "@components/icon";
import { useUI } from "@components/ui/context";
const CartSidebarView: FunctionComponent = () => {
- const { dispatch } = useUI();
+ const { closeSidebar } = useUI();
return (
<>
- My Cart
-
-
+ My Cart
+