diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 0f2e19e..3141d69 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -31,9 +31,9 @@ export default function BlogPage() {
>
);
-}
\ No newline at end of file
+}
diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx
index 7b0cd9f..efbbab2 100644
--- a/src/app/features/page.tsx
+++ b/src/app/features/page.tsx
@@ -37,9 +37,9 @@ export default function FeaturesPage() {
>
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index b3357eb..6cfd491 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
-import HeroCentered from '@/components/sections/hero/HeroCentered';
+import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
import AboutMetric from '@/components/sections/about/AboutMetric';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
@@ -56,19 +56,17 @@ export default function LandingPage() {
-
@@ -196,4 +194,4 @@ export default function LandingPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx
index b19cd95..c44fc01 100644
--- a/src/app/shop/[id]/page.tsx
+++ b/src/app/shop/[id]/page.tsx
@@ -51,7 +51,9 @@ function ProductPageContent({ params }: ProductPageProps) {
getCheckoutItems,
} = useCart();
- const { buyNow, checkout, isLoading: isCheckoutLoading } = useCheckout();
+ const {
+ buyNow, checkout, isLoading: isCheckoutLoading
+ } = useCheckout();
const handleAddToCart = useCallback(() => {
const item = createCartItem();
@@ -92,7 +94,7 @@ function ProductPageContent({ params }: ProductPageProps) {
setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center"
@@ -141,7 +143,7 @@ function ProductPageContent({ params }: ProductPageProps) {
setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center"
@@ -197,7 +199,7 @@ function ProductPageContent({ params }: ProductPageProps) {
setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center"
@@ -260,4 +262,4 @@ function ProductPageContent({ params }: ProductPageProps) {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
index c7e0dae..ba15047 100644
--- a/src/app/shop/page.tsx
+++ b/src/app/shop/page.tsx
@@ -61,7 +61,7 @@ export default function ShopPage() {
setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center"
@@ -109,7 +109,7 @@ export default function ShopPage() {
setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center"
@@ -136,11 +136,11 @@ export default function ShopPage() {
onQuantityChange={updateQuantity}
onRemove={removeItem}
total={`$${cartTotal}`}
- buttons={[
+ buttons=[
{
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout,
},
- ]}
+ ]
/>