7 Commits

Author SHA1 Message Date
98c3cdebca Merge version_2 into main
Merge version_2 into main
2026-04-15 14:54:25 +00:00
733ddfabd9 Update src/app/page.tsx 2026-04-15 14:54:22 +00:00
0488520d52 Merge version_2 into main
Merge version_2 into main
2026-04-15 14:53:49 +00:00
99e9a862d2 Update src/app/page.tsx 2026-04-15 14:53:43 +00:00
39d4d2506f Merge version_1 into main
Merge version_1 into main
2026-04-15 14:37:12 +00:00
ea6eb07f8e Merge version_1 into main
Merge version_1 into main
2026-04-15 14:36:48 +00:00
4375b0e774 Merge version_1 into main
Merge version_1 into main
2026-04-15 14:36:14 +00:00

View File

@@ -3,9 +3,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureBento from '@/components/sections/feature/FeatureBento';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -228,49 +228,48 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactSplit
<ContactCTA
tag="Connect"
title="Start Your Next Industrial Project"
description="Ready to discuss your piping requirements? Our team is available 8AM - 6PM to provide professional consultation and quotes."
buttons={[
{
text: "Get in Touch", href: "#"}
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
background={{
variant: "plain"}}
tag="Get Started"
title="Need Reliable Pipes for Your Project?"
description="Contact our sales team today to request a quote or for technical inquiries. 0699 352 717 | Business Hours: 8AM 6PM."
mediaAnimation="slide-up"
inputPlaceholder="Enter your email for a quote..."
buttonText="Request Quote"
imageSrc="http://img.b2bpic.net/free-photo/engineer-oversees-assembly-tools-tablet-industry-plant-surrounded-by-metal-steel-machinery_482257-135546.jpg"
imageAlt="Engineer oversees assembly tools on tablet in industry plant surrounded by metal and steel machinery"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/wide-angle-shot-part-landschaftspark-duisburg-germany-daytime_181624-10664.jpg"
logoText="PIPES INDUSTRIES"
columns={[
{
items: [
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Products", href: "#products"},
{
label: "Testimonials", href: "#testimonials"},
{
label: "Contact", href: "#contact"},
],
},
{
items: [
title: "Resources", items: [
{
label: "Privacy Policy", href: "#"},
label: "Contact", href: "#contact"},
{
label: "Terms of Service", href: "#"},
label: "Privacy", href: "#"},
{
label: "Terms", href: "#"},
],
},
]}
logoText="PIPES INDUSTRIES"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}