Update src/app/page.tsx
This commit is contained in:
141
src/app/page.tsx
141
src/app/page.tsx
@@ -2,6 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import { Zap, Settings, CheckCircle, Shield } from "lucide-react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||
@@ -31,17 +32,11 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Capabilities",
|
||||
id: "capabilities",
|
||||
},
|
||||
name: "Capabilities", id: "capabilities"},
|
||||
{
|
||||
name: "Quality",
|
||||
id: "quality",
|
||||
},
|
||||
name: "Quality", id: "quality"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Cornelius Electronics Ltd"
|
||||
/>
|
||||
@@ -55,36 +50,22 @@ export default function LandingPage() {
|
||||
showBlur={true}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/plant-picture-clean-room-equipment-stainless-steel-machines_645730-397.jpg",
|
||||
alt: "Plant worker in lab coat",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/plant-picture-clean-room-equipment-stainless-steel-machines_645730-397.jpg", alt: "Plant worker in lab coat"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/plant-picture-clean-room-equipment-stainless-steel-machines_645730-307.jpg",
|
||||
alt: "Assembly line technician",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/plant-picture-clean-room-equipment-stainless-steel-machines_645730-307.jpg", alt: "Assembly line technician"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/plant-picture-clean-room-equipment-stainless-steel-machines_645730-487.jpg",
|
||||
alt: "Quality assurance lead",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/plant-picture-clean-room-equipment-stainless-steel-machines_645730-487.jpg", alt: "Quality assurance lead"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/people-white-isolating-costumes-working-laboratory_645730-555.jpg",
|
||||
alt: "Process engineer",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/people-white-isolating-costumes-working-laboratory_645730-555.jpg", alt: "Process engineer"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/plant-picture-clean-room-equipment-stainless-steel-machines_645730-452.jpg",
|
||||
alt: "Manufacturing facility floor",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/plant-picture-clean-room-equipment-stainless-steel-machines_645730-452.jpg", alt: "Manufacturing facility floor"},
|
||||
]}
|
||||
avatarText="Trusted by industry innovators"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Get a Quote", href: "#contact"},
|
||||
{
|
||||
text: "View Services",
|
||||
href: "#capabilities",
|
||||
},
|
||||
text: "View Services", href: "#capabilities"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -95,28 +76,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "PCB Assembly",
|
||||
description: "High-speed SMT and through-hole assembly with automated optical inspection.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/miniature-workers-working-chip-motherboard_1252-831.jpg",
|
||||
buttonIcon: "Zap",
|
||||
title: "PCB Assembly", description: "High-speed SMT and through-hole assembly with automated optical inspection.", imageSrc: "http://img.b2bpic.net/free-photo/miniature-workers-working-chip-motherboard_1252-831.jpg", buttonIcon: Zap,
|
||||
},
|
||||
{
|
||||
title: "Unit Integration",
|
||||
description: "Final assembly, configuration, and testing for complete end-user ready products.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-tiny-music-boxes-collection_23-2150545640.jpg",
|
||||
buttonIcon: "Settings",
|
||||
title: "Unit Integration", description: "Final assembly, configuration, and testing for complete end-user ready products.", imageSrc: "http://img.b2bpic.net/free-photo/view-tiny-music-boxes-collection_23-2150545640.jpg", buttonIcon: Settings,
|
||||
},
|
||||
{
|
||||
title: "Testing Services",
|
||||
description: "In-circuit testing, functional testing, and environmental stress screening.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-hard-drive-still-life-close-up_23-2149319361.jpg",
|
||||
buttonIcon: "CheckCircle",
|
||||
title: "Testing Services", description: "In-circuit testing, functional testing, and environmental stress screening.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-hard-drive-still-life-close-up_23-2149319361.jpg", buttonIcon: CheckCircle,
|
||||
},
|
||||
{
|
||||
title: "Supply Chain Mgmt",
|
||||
description: "Strategic component sourcing, inventory optimization, and logistics support.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-blue-technology-background_23-2148882620.jpg",
|
||||
buttonIcon: "Shield",
|
||||
title: "Supply Chain Mgmt", description: "Strategic component sourcing, inventory optimization, and logistics support.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-blue-technology-background_23-2148882620.jpg", buttonIcon: Shield,
|
||||
},
|
||||
]}
|
||||
title="Manufacturing Capabilities"
|
||||
@@ -132,17 +101,11 @@ export default function LandingPage() {
|
||||
description="Cornelius Electronics Ltd is committed to total quality management across every step of our manufacturing processes."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "ISO Certified",
|
||||
description: "Full compliance with international quality management standards.",
|
||||
},
|
||||
title: "ISO Certified", description: "Full compliance with international quality management standards."},
|
||||
{
|
||||
title: "Zero-Defect Goal",
|
||||
description: "Continuous process improvement to drive highest yields.",
|
||||
},
|
||||
title: "Zero-Defect Goal", description: "Continuous process improvement to drive highest yields."},
|
||||
{
|
||||
title: "Regulatory Compliance",
|
||||
description: "Fully RoHS and REACH compliant workflows.",
|
||||
},
|
||||
title: "Regulatory Compliance", description: "Fully RoHS and REACH compliant workflows."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/technician-holding-computer-parts-workshop_23-2147922226.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -157,20 +120,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "99.9%",
|
||||
description: "First-pass Yield",
|
||||
},
|
||||
id: "m1", value: "99.9%", description: "First-pass Yield"},
|
||||
{
|
||||
id: "m2",
|
||||
value: "5M+",
|
||||
description: "Components Placed Monthly",
|
||||
},
|
||||
id: "m2", value: "5M+", description: "Components Placed Monthly"},
|
||||
{
|
||||
id: "m3",
|
||||
value: "24/7",
|
||||
description: "Operational Capability",
|
||||
},
|
||||
id: "m3", value: "24/7", description: "Operational Capability"},
|
||||
]}
|
||||
title="Performance at Scale"
|
||||
description="Proven data-driven results for our global partners."
|
||||
@@ -182,14 +136,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"TechCorp",
|
||||
"Innovate Electronics",
|
||||
"Aerospace Systems",
|
||||
"Consumer Solutions",
|
||||
"Medical Tech",
|
||||
"Industrial Automation",
|
||||
"Global Telecom",
|
||||
]}
|
||||
"TechCorp", "Innovate Electronics", "Aerospace Systems", "Consumer Solutions", "Medical Tech", "Industrial Automation", "Global Telecom"]}
|
||||
title="Partnering with Industry Leaders"
|
||||
description="We support OEMs and startups across sectors, delivering consistent manufacturing excellence."
|
||||
/>
|
||||
@@ -200,20 +147,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "What are your minimum order quantities?",
|
||||
content: "We handle everything from rapid prototyping batches to high-volume production runs.",
|
||||
},
|
||||
id: "q1", title: "What are your minimum order quantities?", content: "We handle everything from rapid prototyping batches to high-volume production runs."},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Do you provide design support?",
|
||||
content: "Yes, our engineering team offers DFM (Design for Manufacturing) analysis to optimize production.",
|
||||
},
|
||||
id: "q2", title: "Do you provide design support?", content: "Yes, our engineering team offers DFM (Design for Manufacturing) analysis to optimize production."},
|
||||
{
|
||||
id: "q3",
|
||||
title: "How do you handle component procurement?",
|
||||
content: "We maintain a global supplier network and leverage direct manufacturer relationships for sourcing.",
|
||||
},
|
||||
id: "q3", title: "How do you handle component procurement?", content: "We maintain a global supplier network and leverage direct manufacturer relationships for sourcing."},
|
||||
]}
|
||||
sideTitle="Manufacturing Questions?"
|
||||
sideDescription="Find answers regarding our production processes, capacity, and onboarding."
|
||||
@@ -225,14 +163,11 @@ export default function LandingPage() {
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "canvas-reveal",
|
||||
}}
|
||||
variant: "canvas-reveal"}}
|
||||
text="Ready to discuss your next production project? Contact our engineering team today."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "#",
|
||||
},
|
||||
text: "Contact Us", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -242,29 +177,19 @@ export default function LandingPage() {
|
||||
logoText="Cornelius Electronics"
|
||||
columns={[
|
||||
{
|
||||
title: "Manufacturing",
|
||||
items: [
|
||||
title: "Manufacturing", items: [
|
||||
{
|
||||
label: "Capabilities",
|
||||
href: "#capabilities",
|
||||
},
|
||||
label: "Capabilities", href: "#capabilities"},
|
||||
{
|
||||
label: "Quality Standards",
|
||||
href: "#quality",
|
||||
},
|
||||
label: "Quality Standards", href: "#quality"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#",
|
||||
},
|
||||
label: "About", href: "#"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user