9 Commits

Author SHA1 Message Date
25c3090f50 Update src/app/shop/page.tsx 2026-02-20 21:59:16 +00:00
cbf42372d9 Update src/app/shop/[id]/page.tsx 2026-02-20 21:59:16 +00:00
3606fab604 Update src/app/shop/page.tsx 2026-02-20 21:56:25 +00:00
b83697c236 Update src/app/shop/[id]/page.tsx 2026-02-20 21:56:24 +00:00
d517233ecf Update src/app/page.tsx 2026-02-20 21:56:23 +00:00
c4349f6d82 Update src/app/layout.tsx 2026-02-20 21:56:22 +00:00
1ae2fd45a5 Update src/app/blog/page.tsx 2026-02-20 21:56:21 +00:00
44938edcab Merge version_5 into main
Merge version_5 into main
2026-02-20 21:54:06 +00:00
56de79167d Merge version_5 into main
Merge version_5 into main
2026-02-20 21:50:59 +00:00
5 changed files with 27 additions and 16 deletions

View File

@@ -81,4 +81,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -1406,4 +1406,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -66,7 +66,13 @@ export default function LandingPage() {
background={{ variant: "glowing-orb" }}
kpis={[{ value: "15+", label: "Years Experience" }, { value: "500+", label: "Projects Delivered" }, { value: "98%", label: "Client Satisfaction" }]}
enableKpiAnimation={true}
tag="Your Story, Our Expertise"
avatars={[
{ src: "https://picsum.photos/id/1005/40/40", alt: "Client Avatar 1" },
{ src: "https://picsum.photos/id/1006/40/40", alt: "Client Avatar 2" },
{ src: "https://picsum.photos/id/1008/40/40", alt: "Client Avatar 3" },
{ src: "https://picsum.photos/id/1011/40/40", alt: "Client Avatar 4" }
]}
avatarText="Trusted by over 200+ clients"
buttons={[{ text: "View Our Work", href: "#services" }, { text: "Get a Free Consultation", href: "#contact" }]}
imageSrc="https://img.b2bpic.net/free-photo/medium-shot-people-radio-station_23-2148802324.jpg?_wi=1"
imageAlt="Professional production studio set up"
@@ -262,4 +268,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -94,7 +94,9 @@ function ProductPageContent({ params }: ProductPageProps) {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#features-detailed" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Pro Studio"
className="bg-card/90 backdrop-blur-sm shadow-lg"
@@ -147,7 +149,9 @@ function ProductPageContent({ params }: ProductPageProps) {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#features-detailed" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Pro Studio"
className="bg-card/90 backdrop-blur-sm shadow-lg"
@@ -207,7 +211,9 @@ function ProductPageContent({ params }: ProductPageProps) {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#features-detailed" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Pro Studio"
className="bg-card/90 backdrop-blur-sm shadow-lg"
@@ -222,16 +228,11 @@ function ProductPageContent({ params }: ProductPageProps) {
layout="page"
name={product.name}
price={product.price}
salePrice={meta.salePrice}
rating={product.rating || 0}
description={product.description}
images={images}
variants={variants.length > 0 ? variants : undefined}
quantity={quantityVariant}
ribbon={meta.ribbon}
inventoryStatus={meta.inventoryStatus}
inventoryQuantity={meta.inventoryQuantity}
sku={meta.sku}
buttons={[
{ text: "Add To Cart", onClick: handleAddToCart },
{ text: "Buy Now", onClick: handleBuyNow },
@@ -272,4 +273,4 @@ function ProductPageContent({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -61,7 +61,9 @@ export default function ShopPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#features-detailed" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Pro Studio"
className="bg-card/90 backdrop-blur-sm shadow-lg"
@@ -113,7 +115,9 @@ export default function ShopPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#features-detailed" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Pro Studio"
className="bg-card/90 backdrop-blur-sm shadow-lg"
@@ -168,4 +172,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}