Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 965e177eba | |||
| a328c8ab5b | |||
| 2adf8812ff | |||
| 03789c0713 | |||
| 589cbdc856 | |||
| efe9db1683 | |||
| 23b102ac73 | |||
| 0791e387ba | |||
| 27b87ddcc9 | |||
| 6df21d20f2 | |||
| 4f6ea92720 | |||
| ef81853402 | |||
| b00bdd2aa0 | |||
| 0ba1c6c0d9 | |||
| fe0d992f26 |
@@ -28,13 +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: "Clients", id: "/" },
|
{ 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" }}
|
||||||
@@ -43,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>
|
||||||
@@ -58,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."
|
||||||
@@ -73,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>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -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"
|
||||||
@@ -79,21 +79,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">
|
||||||
|
|||||||
@@ -90,12 +90,11 @@ 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: "Shop", id: "/shop" }
|
||||||
{ name: "Clients", id: "/" }
|
|
||||||
]}
|
]}
|
||||||
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 +143,11 @@ 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: "Shop", id: "/shop" }
|
||||||
{ name: "Clients", id: "/" }
|
|
||||||
]}
|
]}
|
||||||
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 +203,11 @@ 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: "Shop", id: "/shop" }
|
||||||
{ name: "Clients", id: "/" }
|
|
||||||
]}
|
]}
|
||||||
brandName="Pro Studio"
|
brandName="Pro Studio"
|
||||||
className="bg-card/90 backdrop-blur-sm shadow-lg"
|
className="bg-card/90 backdrop-blur-sm shadow-lg"
|
||||||
|
|||||||
@@ -57,12 +57,11 @@ 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: "Shop", id: "/shop" }
|
||||||
{ name: "Clients", id: "/" }
|
|
||||||
]}
|
]}
|
||||||
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 +109,11 @@ 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: "Shop", id: "/shop" }
|
||||||
{ name: "Clients", id: "/" }
|
|
||||||
]}
|
]}
|
||||||
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