Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 25c3090f50 | |||
| cbf42372d9 | |||
| 3606fab604 | |||
| b83697c236 | |||
| d517233ecf | |||
| c4349f6d82 | |||
| 1ae2fd45a5 | |||
| 44938edcab | |||
| 965e177eba | |||
| a328c8ab5b | |||
| 2adf8812ff | |||
| 03789c0713 | |||
| 56de79167d | |||
| 589cbdc856 | |||
| efe9db1683 | |||
| 23b102ac73 | |||
| 0791e387ba | |||
| 27b87ddcc9 | |||
| 6df21d20f2 |
@@ -28,12 +28,13 @@ export default function BlogPage() {
|
|||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "#about" },
|
{ name: "About", id: "/#about" },
|
||||||
{ name: "Services", id: "#features-detailed" },
|
{ 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" }}
|
||||||
@@ -42,7 +43,9 @@ export default function BlogPage() {
|
|||||||
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"
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="blog" data-section="blog">
|
||||||
{isLoading ? (
|
{isLoading ? (
|
||||||
<div className="w-content-width mx-auto py-20 text-center">
|
<div className="w-content-width mx-auto py-20 text-center">
|
||||||
<p className="text-foreground">Loading posts...</p>
|
<p className="text-foreground">Loading posts...</p>
|
||||||
@@ -57,7 +60,9 @@ export default function BlogPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
<FooterCard
|
<FooterCard
|
||||||
logoText="Pro Studio"
|
logoText="Pro Studio"
|
||||||
copyrightText="© 2023 Pro Studio. All rights reserved."
|
copyrightText="© 2023 Pro Studio. All rights reserved."
|
||||||
@@ -72,6 +77,7 @@ export default function BlogPage() {
|
|||||||
copyrightTextClassName="text-sm text-foreground/70"
|
copyrightTextClassName="text-sm text-foreground/70"
|
||||||
socialIconClassName="text-foreground/80 hover:text-primary-cta transition-colors duration-300"
|
socialIconClassName="text-foreground/80 hover:text-primary-cta transition-colors duration-300"
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -90,11 +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: "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"
|
||||||
@@ -143,11 +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: "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"
|
||||||
@@ -203,11 +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: "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"
|
||||||
@@ -222,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 },
|
||||||
|
|||||||
@@ -57,11 +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: "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"
|
||||||
@@ -109,11 +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: "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"
|
||||||
|
|||||||
Reference in New Issue
Block a user