24 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
965e177eba Update src/app/shop/page.tsx 2026-02-20 21:54:02 +00:00
a328c8ab5b Update src/app/shop/[id]/page.tsx 2026-02-20 21:54:01 +00:00
2adf8812ff Update src/app/page.tsx 2026-02-20 21:54:00 +00:00
03789c0713 Update src/app/blog/page.tsx 2026-02-20 21:53:59 +00:00
56de79167d Merge version_5 into main
Merge version_5 into main
2026-02-20 21:50:59 +00:00
589cbdc856 Update src/app/shop/page.tsx 2026-02-20 21:50:55 +00:00
efe9db1683 Update src/app/shop/[id]/page.tsx 2026-02-20 21:50:54 +00:00
23b102ac73 Update src/app/page.tsx 2026-02-20 21:50:54 +00:00
0791e387ba Update src/app/layout.tsx 2026-02-20 21:50:53 +00:00
27b87ddcc9 Update src/app/blog/page.tsx 2026-02-20 21:50:51 +00:00
6df21d20f2 Merge version_4 into main
Merge version_4 into main
2026-02-20 21:48:39 +00:00
4f6ea92720 Update src/app/shop/page.tsx 2026-02-20 21:48:35 +00:00
ef81853402 Update src/app/shop/[id]/page.tsx 2026-02-20 21:48:34 +00:00
b00bdd2aa0 Update src/app/page.tsx 2026-02-20 21:48:33 +00:00
0ba1c6c0d9 Update src/app/blog/page.tsx 2026-02-20 21:48:32 +00:00
fe0d992f26 Merge version_3 into main
Merge version_3 into main
2026-02-20 21:44:43 +00:00
4 changed files with 88 additions and 78 deletions

View File

@@ -28,51 +28,56 @@ export default function BlogPage() {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<NavbarLayoutFloatingInline <div id="nav" data-section="nav">
navItems={[ <NavbarLayoutFloatingInline
{ name: "Home", id: "/" }, navItems={[
{ name: "About", id: "#about" }, { name: "Home", id: "/" },
{ name: "Services", id: "#features-detailed" }, { name: "About", id: "/#about" },
{ name: "Clients", id: "/" }, { name: "Services", id: "/#features-detailed" },
{ name: "Contact", id: "#contact" }, { name: "Contact", id: "/#contact" },
]} ]}
brandName="Pro Studio" brandName="Pro Studio"
button={{ text: "Get a Quote", href: "/#contact" }} button={{ text: "Get a Quote", href: "/#contact" }}
className="bg-card/90 backdrop-blur-sm shadow-lg" className="bg-card/90 backdrop-blur-sm shadow-lg"
navItemClassName="text-foreground hover:text-primary-cta transition-colors duration-300" navItemClassName="text-foreground hover:text-primary-cta transition-colors duration-300"
buttonClassName="bg-primary-cta text-secondary-cta px-6 py-2 rounded-pill hover:bg-accent hover:text-primary-cta transition-all duration-300" buttonClassName="bg-primary-cta text-secondary-cta px-6 py-2 rounded-pill hover:bg-accent hover:text-primary-cta transition-all duration-300"
buttonTextClassName="font-medium text-base" buttonTextClassName="font-medium text-base"
/>
{isLoading ? (
<div className="w-content-width mx-auto py-20 text-center">
<p className="text-foreground">Loading posts...</p>
</div>
) : (
<BlogCardThree
blogs={posts}
title="Featured Articles"
description="Explore our latest insights"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/> />
)} </div>
<FooterCard <div id="blog" data-section="blog">
logoText="Pro Studio" {isLoading ? (
copyrightText="© 2023 Pro Studio. All rights reserved." <div className="w-content-width mx-auto py-20 text-center">
socialLinks={[ <p className="text-foreground">Loading posts...</p>
{ icon: Twitter, href: "https://twitter.com/prostudio", ariaLabel: "Twitter" }, </div>
{ icon: Linkedin, href: "https://linkedin.com/company/prostudio", ariaLabel: "LinkedIn" }, ) : (
{ icon: Instagram, href: "https://instagram.com/prostudio", ariaLabel: "Instagram" }, <BlogCardThree
]} blogs={posts}
className="py-16 md:py-24 bg-background-accent" title="Featured Articles"
cardClassName="bg-card/70 backdrop-blur-md" description="Explore our latest insights"
logoClassName="text-2xl font-bold text-foreground" animationType="slide-up"
copyrightTextClassName="text-sm text-foreground/70" textboxLayout="default"
socialIconClassName="text-foreground/80 hover:text-primary-cta transition-colors duration-300" useInvertedBackground={false}
/> />
)}
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Pro Studio"
copyrightText="© 2023 Pro Studio. All rights reserved."
socialLinks={[
{ icon: Twitter, href: "https://twitter.com/prostudio", ariaLabel: "Twitter" },
{ icon: Linkedin, href: "https://linkedin.com/company/prostudio", ariaLabel: "LinkedIn" },
{ icon: Instagram, href: "https://instagram.com/prostudio", ariaLabel: "Instagram" },
]}
className="py-16 md:py-24 bg-background-accent"
cardClassName="bg-card/70 backdrop-blur-md"
logoClassName="text-2xl font-bold text-foreground"
copyrightTextClassName="text-sm text-foreground/70"
socialIconClassName="text-foreground/80 hover:text-primary-cta transition-colors duration-300"
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "#about" }, { name: "Services", id: "#features-detailed" }, { name: "Clients", id: "/" }, { name: "Contact", id: "#contact" }]} navItems={[{ name: "Home", id: "/" }, { name: "About", id: "#about" }, { name: "Services", id: "#features-detailed" }, { name: "Contact", id: "#contact" }]}
brandName="Pro Studio" brandName="Pro Studio"
button={{ text: "Get a Quote", href: "#contact" }} button={{ text: "Get a Quote", href: "#contact" }}
className="bg-card/90 backdrop-blur-sm shadow-lg" className="bg-card/90 backdrop-blur-sm shadow-lg"
@@ -66,7 +66,13 @@ export default function LandingPage() {
background={{ variant: "glowing-orb" }} background={{ variant: "glowing-orb" }}
kpis={[{ value: "15+", label: "Years Experience" }, { value: "500+", label: "Projects Delivered" }, { value: "98%", label: "Client Satisfaction" }]} kpis={[{ value: "15+", label: "Years Experience" }, { value: "500+", label: "Projects Delivered" }, { value: "98%", label: "Client Satisfaction" }]}
enableKpiAnimation={true} 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" }]} 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" imageSrc="https://img.b2bpic.net/free-photo/medium-shot-people-radio-station_23-2148802324.jpg?_wi=1"
imageAlt="Professional production studio set up" imageAlt="Professional production studio set up"
@@ -79,21 +85,20 @@ export default function LandingPage() {
buttonClassName="px-8 py-3 rounded-pill text-lg" buttonClassName="px-8 py-3 rounded-pill text-lg"
buttonTextClassName="font-semibold" buttonTextClassName="font-semibold"
marqueeItems={[ marqueeItems={[
{ type: "text", text: "Creative Minds Agency" }, { type: "image", src: "https://picsum.photos/id/1018/100/50", alt: "Client Logo 1" },
{ type: "text", text: "GlobalTech Solutions" }, { type: "image", src: "https://picsum.photos/id/1025/100/50", alt: "Client Logo 2" },
{ type: "text", text: "Apex Innovations" }, { type: "image", src: "https://picsum.photos/id/1032/100/50", alt: "Client Logo 3" },
{ type: "text", text: "Nexus Games" }, { type: "image", src: "https://picsum.photos/id/1035/100/50", alt: "Client Logo 4" },
{ type: "text", text: "Bloom Skincare" }, { type: "image", src: "https://picsum.photos/id/1043/100/50", alt: "Client Logo 5" },
{ type: "text", text: "FutureForward Consulting" }, { type: "image", src: "https://picsum.photos/id/1047/100/50", alt: "Client Logo 6" },
{ type: "text", text: "Digital Horizon Studios" }, { type: "image", src: "https://picsum.photos/id/1049/100/50", alt: "Client Logo 7" },
{ type: "text", text: "Urban Living Magazine" }, { type: "image", src: "https://picsum.photos/id/106/100/50", alt: "Client Logo 8" },
{ type: "text", text: "Veridian Dynamics" }, { type: "image", src: "https://picsum.photos/id/107/100/50", alt: "Client Logo 9" },
{ type: "text", text: "Starlight Entertainment" } { type: "image", src: "https://picsum.photos/id/108/100/50", alt: "Client Logo 10" }
]} ]}
marqueeSpeed={40} marqueeSpeed={40}
showMarqueeCard={true} showMarqueeCard={false}
marqueeTextClassName="text-2xl font-semibold text-foreground/80" marqueeImageClassName="max-h-12 w-auto object-contain py-2"
marqueeCardClassName="bg-card/70 backdrop-blur-md"
/> />
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">

View File

@@ -90,12 +90,13 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }, { name: "About", id: "/#about" },
{ name: "Clients", id: "/" } { name: "Services", id: "/#features-detailed" },
{ name: "Contact", id: "/#contact" }
]} ]}
brandName="Pro Studio" brandName="Pro Studio"
className="bg-card/90 backdrop-blur-sm shadow-lg" className="bg-card/90 backdrop-blur-sm shadow-lg"
@@ -144,12 +145,13 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }, { name: "About", id: "/#about" },
{ name: "Clients", id: "/" } { name: "Services", id: "/#features-detailed" },
{ name: "Contact", id: "/#contact" }
]} ]}
brandName="Pro Studio" brandName="Pro Studio"
className="bg-card/90 backdrop-blur-sm shadow-lg" className="bg-card/90 backdrop-blur-sm shadow-lg"
@@ -205,12 +207,13 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }, { name: "About", id: "/#about" },
{ name: "Clients", id: "/" } { name: "Services", id: "/#features-detailed" },
{ name: "Contact", id: "/#contact" }
]} ]}
brandName="Pro Studio" brandName="Pro Studio"
className="bg-card/90 backdrop-blur-sm shadow-lg" className="bg-card/90 backdrop-blur-sm shadow-lg"
@@ -225,16 +228,11 @@ function ProductPageContent({ params }: ProductPageProps) {
layout="page" layout="page"
name={product.name} name={product.name}
price={product.price} price={product.price}
salePrice={meta.salePrice}
rating={product.rating || 0} rating={product.rating || 0}
description={product.description} description={product.description}
images={images} images={images}
variants={variants.length > 0 ? variants : undefined} variants={variants.length > 0 ? variants : undefined}
quantity={quantityVariant} quantity={quantityVariant}
ribbon={meta.ribbon}
inventoryStatus={meta.inventoryStatus}
inventoryQuantity={meta.inventoryQuantity}
sku={meta.sku}
buttons={[ buttons={[
{ text: "Add To Cart", onClick: handleAddToCart }, { text: "Add To Cart", onClick: handleAddToCart },
{ text: "Buy Now", onClick: handleBuyNow }, { text: "Buy Now", onClick: handleBuyNow },

View File

@@ -57,12 +57,13 @@ export default function ShopPage() {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }, { name: "About", id: "/#about" },
{ name: "Clients", id: "/" } { name: "Services", id: "/#features-detailed" },
{ name: "Contact", id: "/#contact" }
]} ]}
brandName="Pro Studio" brandName="Pro Studio"
className="bg-card/90 backdrop-blur-sm shadow-lg" className="bg-card/90 backdrop-blur-sm shadow-lg"
@@ -110,12 +111,13 @@ export default function ShopPage() {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }, { name: "About", id: "/#about" },
{ name: "Clients", id: "/" } { name: "Services", id: "/#features-detailed" },
{ name: "Contact", id: "/#contact" }
]} ]}
brandName="Pro Studio" brandName="Pro Studio"
className="bg-card/90 backdrop-blur-sm shadow-lg" className="bg-card/90 backdrop-blur-sm shadow-lg"