Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4f6ea92720 | |||
| ef81853402 | |||
| b00bdd2aa0 | |||
| 0ba1c6c0d9 | |||
| fe0d992f26 | |||
| 623576c75f | |||
| c642fbfee3 | |||
| ee7f816843 | |||
| abf0ccca5c | |||
| fa6376c40c | |||
| dd463a9243 | |||
| b3c5f400d4 | |||
| 5e1093adcf | |||
| 9fe52dedb3 | |||
| a76dea9823 | |||
| ecb3e195ed | |||
| 1df376c2e3 | |||
| 43fab83a96 | |||
| 473bd01285 | |||
| 5e07fb2107 | |||
| ad8a1cd0eb | |||
| 7b2c7b1316 | |||
| 1d2aa2b0e3 | |||
| f0391081db |
@@ -31,13 +31,12 @@ export default function BlogPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "#about" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "#features-detailed" },
|
||||||
{ name: "Clients", id: "clients" },
|
{ 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"
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNinete
|
|||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||||
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||||
|
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
import {
|
import {
|
||||||
@@ -49,7 +50,7 @@ export default function LandingPage() {
|
|||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[{ name: "About", id: "about" }, { name: "Services", id: "services" }, { name: "Clients", id: "clients" }, { 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"
|
||||||
@@ -77,6 +78,21 @@ export default function LandingPage() {
|
|||||||
tagClassName="text-sm font-semibold text-primary-cta"
|
tagClassName="text-sm font-semibold text-primary-cta"
|
||||||
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={[
|
||||||
|
{ type: "image", src: "https://picsum.photos/id/1018/100/50", alt: "Client Logo 1" },
|
||||||
|
{ type: "image", src: "https://picsum.photos/id/1025/100/50", alt: "Client Logo 2" },
|
||||||
|
{ type: "image", src: "https://picsum.photos/id/1032/100/50", alt: "Client Logo 3" },
|
||||||
|
{ type: "image", src: "https://picsum.photos/id/1035/100/50", alt: "Client Logo 4" },
|
||||||
|
{ type: "image", src: "https://picsum.photos/id/1043/100/50", alt: "Client Logo 5" },
|
||||||
|
{ type: "image", src: "https://picsum.photos/id/1047/100/50", alt: "Client Logo 6" },
|
||||||
|
{ type: "image", src: "https://picsum.photos/id/1049/100/50", alt: "Client Logo 7" },
|
||||||
|
{ type: "image", src: "https://picsum.photos/id/106/100/50", alt: "Client Logo 8" },
|
||||||
|
{ type: "image", src: "https://picsum.photos/id/107/100/50", alt: "Client Logo 9" },
|
||||||
|
{ type: "image", src: "https://picsum.photos/id/108/100/50", alt: "Client Logo 10" }
|
||||||
|
]}
|
||||||
|
marqueeSpeed={40}
|
||||||
|
showMarqueeCard={false}
|
||||||
|
marqueeImageClassName="max-h-12 w-auto object-contain py-2"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
@@ -174,6 +190,7 @@ export default function LandingPage() {
|
|||||||
cardDateClassName="text-sm text-foreground/60"
|
cardDateClassName="text-sm text-foreground/60"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="features-detailed" data-section="features-detailed">
|
<div id="features-detailed" data-section="features-detailed">
|
||||||
<FeatureCardTen
|
<FeatureCardTen
|
||||||
features={[
|
features={[
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-mulish), sans-serif;
|
font-family: var(--font-raleway), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-mulish), sans-serif;
|
font-family: var(--font-raleway), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user