3 Commits

Author SHA1 Message Date
3156b14b26 Update src/app/page.tsx 2026-05-21 03:09:37 +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

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText'; import ContactText from '@/components/sections/contact/ContactText';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; 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 HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -40,8 +40,7 @@ export default function LandingPage() {
{ name: "Pricing", id: "pricing" }, { name: "Pricing", id: "pricing" },
{ name: "Testimonials", id: "testimonials" }, { name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" }, { name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" }
{ name: "Blog", id: "/blog" }
]} ]}
brandName="AIProfitLab" 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/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/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/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> </div>
@@ -181,13 +180,16 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <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" logoText="AIProfitLab"
leftLink={{ text: "Privacy Policy", href: "#" }} columns={[
rightLink={{ text: "Terms of Service", href: "#" }} { title: "Resources", items: [{ label: "Blog", href: "#" }, { label: "Guides", href: "#" }] },
{ title: "Company", items: [{ label: "About", href: "#" }, { label: "Contact", href: "#" }] }
]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }