8 Commits

Author SHA1 Message Date
dcd334038f Merge version_4 into main
Merge version_4 into main
2026-05-21 03:13:19 +00:00
6482c98b85 Update src/app/page.tsx 2026-05-21 03:13:16 +00:00
51e95decc2 Update src/app/blog/page.tsx 2026-05-21 03:13:16 +00:00
b1cce37b52 Merge version_3 into main
Merge version_3 into main
2026-05-21 03:09:40 +00:00
3156b14b26 Update src/app/page.tsx 2026-05-21 03:09:37 +00:00
ed007b0514 Merge version_3 into main
Merge version_3 into main
2026-05-21 03:09:16 +00:00
4724fce3b3 Update src/app/page.tsx 2026-05-21 03:09:09 +00:00
ff6c75debd Merge version_2 into main
Merge version_2 into main
2026-05-21 02:57:03 +00:00
2 changed files with 11 additions and 9 deletions

View File

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

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -40,8 +40,7 @@ export default function LandingPage() {
{ name: "Pricing", id: "pricing" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
{ name: "Blog", id: "/blog" }
{ name: "Contact", id: "contact" }
]}
brandName="AIProfitLab"
/>
@@ -58,7 +57,7 @@ export default function LandingPage() {
{ imageSrc: "http://img.b2bpic.net/free-photo/cheerful-data-center-admins-doing-fist-bump-celebrating-ai-implementation_482257-130291.jpg?_wi=1", imageAlt: "AI Business Plan" },
{ imageSrc: "http://img.b2bpic.net/free-photo/futuristic-view-high-tech-earth-planet_23-2151100315.jpg?_wi=1", imageAlt: "Network Nodes" },
{ imageSrc: "http://img.b2bpic.net/free-photo/research-experts-studies-economic-activity_482257-82295.jpg?_wi=1", imageAlt: "Revenue Screen" },
{ imageSrc: "http://img.b2bpic.net/free-photo/digital-transformation-corporate-wallpaper_53876-97646.jpg", imageAlt: "Deep Learning Circuits" }
{ imageSrc: "http://img.b2bpic.net/free-photo/digital-transformation-corporate-wallpaper_53876-97646.jpg?_wi=1", imageAlt: "Deep Learning Circuits" }
]}
/>
</div>
@@ -181,13 +180,16 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/digital-transformation-corporate-wallpaper_53876-97646.jpg?_wi=2"
logoText="AIProfitLab"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
columns={[
{ title: "Resources", items: [{ label: "Blog", href: "/blog" }, { label: "Guides", href: "#" }] },
{ title: "Company", items: [{ label: "About", href: "#" }, { label: "Contact", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}