Merge version_3 into main #3

Merged
bender merged 1 commits from version_3 into main 2026-04-24 04:38:17 +00:00

View File

@@ -6,13 +6,12 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import HeroPersonalLinks from '@/components/sections/hero/HeroPersonalLinks';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import ProductCardThree from '@/components/sections/ecommerce/productDetail/ProductDetailCard';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Zap, Target, Shield, Star, Award, Mail } from "lucide-react";
import { Target, Shield } from "lucide-react";
export default function LandingPage() {
return (
@@ -65,8 +64,8 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
{ title: "Tactical Focus", description: "Advanced lens technology for superior clarity.", media: { imageSrc: "http://img.b2bpic.net/free-photo/technology-microchip-background_23-2148858801.jpg" }, items: [{ icon: Target, text: "Precision optics" }] },
{ title: "Built Tough", description: "Designed to withstand the most extreme conditions.", media: { imageSrc: "http://img.b2bpic.net/free-photo/technology-microchip-background_23-2148858801.jpg" }, items: [{ icon: Shield, text: "Military grade" }] }
{ title: "Tactical Focus", description: "Advanced lens technology for superior clarity.", media: { imageSrc: "http://img.b2bpic.net/free-photo/technology-microchip-background_23-2148858801.jpg" }, items: [{ icon: Target, text: "Precision optics" }], reverse: false },
{ title: "Built Tough", description: "Designed to withstand the most extreme conditions.", media: { imageSrc: "http://img.b2bpic.net/free-photo/technology-microchip-background_23-2148858801.jpg" }, items: [{ icon: Shield, text: "Military grade" }], reverse: true }
]}
/>
</div>
@@ -86,6 +85,7 @@ export default function LandingPage() {
showRating={true}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[{ id: "1", name: "Alex Vance", handle: "@ops_lead", testimonial: "The precision of this equipment is unparalleled in the field.", rating: 5 }]}
/>
</div>
@@ -93,9 +93,11 @@ export default function LandingPage() {
<div id="faq" data-section="faq">
<FaqDouble
title="Common Inquiries"
description="Frequently asked questions about our technology."
faqs={[{ id: "1", title: "How is the calibration done?", content: "Automated factory calibration ensures consistent performance out of the box." }]}
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
@@ -106,6 +108,7 @@ export default function LandingPage() {
description="Reach out to our engineering team to discuss your specific requirements."
buttons={[{ text: "Contact Our Team", href: "#contact" }]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/>
</div>