Update src/app/page.tsx

This commit is contained in:
2026-04-02 20:03:22 +00:00
parent c90dc1a2a2
commit b9c8b19ffd

View File

@@ -9,7 +9,7 @@ import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import { Box } from "lucide-react";
import { Box, HelpCircle, Target, Users } from "lucide-react";
export default function LandingPage() {
return (
@@ -62,9 +62,10 @@ export default function LandingPage() {
<TestimonialAboutCard
useInvertedBackground={true}
tag="3D Interactive Lab"
tagIcon={Target}
title="Anatomical System Explorer"
description="The viewer enables real-time interaction with the human model. Rotate, zoom, and pan using standard mouse controls. Toggle visibility for Bones, Muscles, and Nerves to study the body as distinct, color-coded systems."
subdescription="Click any model component to reveal clinical names and structural details in the real-time info panel."
description="The viewer now includes enhanced loading states and smoother rendering for complex model structures. Toggle visibility for Bones, Muscles, and Nerves to study the body as distinct, color-coded systems with improved performance."
subdescription="Click any component to see instant updates in the improved info panel, with bug fixes resolving previous selection inconsistencies."
icon={Box}
imageSrc="http://img.b2bpic.net/free-photo/3d-abstract-art-brain-motion-design_183364-118234.jpg?_wi=7"
mediaAnimation="slide-up"
@@ -75,12 +76,12 @@ export default function LandingPage() {
<FaqSplitText
useInvertedBackground={false}
faqs={[
{ id: "1", title: "How do I toggle model layers?", content: "Simply use the buttons located in the bottom control panel to show or hide the bones, muscles, and nerves." },
{ id: "2", title: "Is the model anatomically accurate?", content: "The model represents standard human structure with high-level visual approximations optimized for interactive web performance." },
{ id: "3", title: "Can I pan and zoom the view?", content: "Yes, standard OrbitControls are enabled. Click and drag to rotate, scroll to zoom, and right-click to pan." },
{ id: "1", title: "How do I toggle model layers?", content: "Simply use the updated control buttons in the bottom panel for immediate layer visibility adjustment." },
{ id: "2", title: "Is the model anatomically accurate?", content: "Yes, the model has been recalibrated for higher anatomical fidelity and better zoom responsiveness." },
{ id: "3", title: "Can I pan and zoom the view?", content: "We have fixed the control conflicts, so pan, zoom, and rotate gestures now work seamlessly across all browsers." },
]}
sideTitle="Questions About the Anatomy Viewer"
sideDescription="Find answers to frequently asked technical and functional questions regarding our 3D anatomy visualization tools."
sideTitle="Viewer Troubleshooting"
sideDescription="Common questions and resolutions for our 3D anatomy visualization tool."
faqsAnimation="blur-reveal"
/>
</div>
@@ -90,12 +91,12 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Educational Impact"
description="Tracking progress and engagement across our student base."
title="Explorer Stability"
description="System uptime and performance benchmarks for the interactive model."
tag="Performance"
metrics={[
{ id: "m1", value: "95%", title: "Accuracy Rating", description: "Validated by medical professionals.", imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-art-brain-motion-design_183364-118234.jpg?_wi=8" },
{ id: "m2", value: "10k+", title: "Active Users", description: "Medical students using our tool daily.", imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-art-brain-motion-design_183364-118234.jpg?_wi=9" },
{ id: "m1", value: "99.9%", title: "System Stability", description: "Optimized for smooth 3D interactions.", imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-art-brain-motion-design_183364-118234.jpg?_wi=8" },
{ id: "m2", value: "12k+", title: "Active Explorers", description: "Students utilizing our updated interactive tool.", imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-art-brain-motion-design_183364-118234.jpg?_wi=9" },
]}
/>
</div>
@@ -103,7 +104,7 @@ export default function LandingPage() {
<div id="product" data-section="product">
<ProductCardThree
title="Anatomy Tools Collection"
description="Explore our range of professional-grade anatomy visualization software solutions."
description="Professional-grade anatomy visualization software with recent performance improvements."
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
@@ -124,4 +125,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}