+
{carouselProducts.map((product, i) => (
-
+
+ {carouselProducts.map((product, i) => (
+ -
+
+
+
+
+ ))}
+
+
+ );
+}
diff --git a/components/grid/three-items.tsx b/components/grid/three-items.tsx
index 23b3f8991..5d55332e8 100644
--- a/components/grid/three-items.tsx
+++ b/components/grid/three-items.tsx
@@ -40,7 +40,7 @@ function ThreeItemGridItem({
export async function ThreeItemGrid() {
// Collections that start with `hidden-*` are hidden from the search page.
const homepageItems = await getCollectionProducts({
- collection: 'hidden-homepage-featured-items'
+ collection: 'shirts'
});
if (!homepageItems[0] || !homepageItems[1] || !homepageItems[2]) return null;
diff --git a/components/icons/okayLogotype.tsx b/components/icons/okayLogotype.tsx
new file mode 100644
index 000000000..4595520d6
--- /dev/null
+++ b/components/icons/okayLogotype.tsx
@@ -0,0 +1,63 @@
+import clsx from 'clsx';
+
+export default function OkayLogotype(props: React.ComponentProps<'svg'>) {
+ return (
+
+ );
+}
diff --git a/components/icons/okaylogo.svg b/components/icons/okaylogo.svg
new file mode 100644
index 000000000..258d55380
--- /dev/null
+++ b/components/icons/okaylogo.svg
@@ -0,0 +1,40 @@
+
+
\ No newline at end of file
diff --git a/components/layout/navbar/index.tsx b/components/layout/navbar/index.tsx
index 0058d5ec8..8cb5f7182 100644
--- a/components/layout/navbar/index.tsx
+++ b/components/layout/navbar/index.tsx
@@ -1,6 +1,6 @@
import Cart from 'components/cart';
import OpenCart from 'components/cart/open-cart';
-import LogoSquare from 'components/logo-square';
+import OkayLogotype from 'components/icons/okayLogotype';
import { getMenu } from 'lib/shopify';
import { Menu } from 'lib/shopify/types';
import Link from 'next/link';
@@ -18,15 +18,15 @@ export default async function Navbar() {