3 Commits

Author SHA1 Message Date
742acfb84e Merge version_2 into main
Merge version_2 into main
2026-04-04 16:41:54 +00:00
e960d7f629 Update src/app/page.tsx 2026-04-04 16:41:48 +00:00
8322bc3342 Merge version_1 into main
Merge version_1 into main
2026-04-04 16:34:25 +00:00

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
@@ -39,25 +39,20 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroCentered
<HeroSplitTestimonial
background={{ variant: "gradient-bars" }}
title="Precision Engineering for the Future"
description="Leading the industry with 4D-ready animations and advanced engineering solutions for high-performance mechanical systems."
avatars={[
{ src: "http://img.b2bpic.net/free-photo/close-up-photovoltaics-factory-worker-diagnosing-equipment-performance-issues_482257-120411.jpg", alt: "Jalaram Tech Team Member 1" },
{ src: "http://img.b2bpic.net/free-photo/3d-rendering-hydraulic-elements_23-2149333343.jpg", alt: "Jalaram Tech Team Member 2" },
{ src: "http://img.b2bpic.net/free-photo/futuristic-robotic-arm-controls-automated-steel-production-generated-by-ai_188544-37245.jpg", alt: "Jalaram Tech Team Member 3" },
{ src: "http://img.b2bpic.net/free-photo/top-view-builder-desk-with-tablet-mock-up_23-2148269846.jpg", alt: "Jalaram Tech Team Member 4" },
{ src: "http://img.b2bpic.net/free-photo/rusty-gear-assembly_1136-278.jpg", alt: "Jalaram Tech Team Member 5" },
testimonials={[
{
name: "John Smith", handle: "@eng_lead", testimonial: "Jalaram Engineering transformed our production line efficiency by over 40%.", rating: 5,
},
{
name: "Sarah Chen", handle: "@tech_ops", testimonial: "Unmatched precision and reliability in every component they manufacture.", rating: 5,
}
]}
buttons={[{ text: "Explore Services", href: "#features" }]}
marqueeItems={[
{ type: "text", text: "ISO Certified" },
{ type: "text", text: "4D Simulation Ready" },
{ type: "text", text: "Global Logistics" },
{ type: "text", text: "Sustainable Design" },
{ type: "text", text: "Advanced Robotics" },
]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-photovoltaics-factory-worker-diagnosing-equipment-performance-issues_482257-120411.jpg"
/>
</div>
@@ -145,4 +140,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}