Skip to content

Commit

Permalink
Some UI updates
Browse files Browse the repository at this point in the history
  • Loading branch information
david emioma committed May 19, 2024
1 parent 85d36bf commit 2cfadbe
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/(marketing)/checkout/_components/OrderSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const OrderSummary = ({ cartId, cartItems }: Props) => {
<div className="flex">
<span className="flex-1">Expiry Datae</span>

<span className="font-semibold">04/24</span>
<span className="font-semibold">04/26</span>
</div>

<div className="flex">
Expand Down
10 changes: 10 additions & 0 deletions app/(marketing)/checkout/loading.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"use client";

import React from "react";
import PageLoad from "@/components/PageLoad";

const loading = () => {
return <PageLoad />;
};

export default loading;
10 changes: 10 additions & 0 deletions app/(marketing)/orders/loading.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"use client";

import React from "react";
import PageLoad from "@/components/PageLoad";

const loading = () => {
return <PageLoad />;
};

export default loading;
10 changes: 10 additions & 0 deletions app/(marketing)/products/[productId]/loading.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"use client";

import React from "react";
import PageLoad from "@/components/PageLoad";

const loading = () => {
return <PageLoad />;
};

export default loading;
10 changes: 10 additions & 0 deletions app/(marketing)/settings/loading.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"use client";

import React from "react";
import PageLoad from "@/components/PageLoad";

const loading = () => {
return <PageLoad />;
};

export default loading;
10 changes: 10 additions & 0 deletions app/(marketing)/stores/[storeId]/loading.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"use client";

import React from "react";
import PageLoad from "@/components/PageLoad";

const loading = () => {
return <PageLoad />;
};

export default loading;

0 comments on commit 2cfadbe

Please sign in to comment.