Merge version_1 into main #1

Merged
bender merged 1 commits from version_1 into main 2026-04-11 11:14:25 +00:00

View File

@@ -6,6 +6,7 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import { ArrowRight } from 'lucide-react';
export default function LandingPage() {
return (
@@ -26,21 +27,13 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Dashboard",
id: "/dashboard",
},
name: "Dashboard", id: "/dashboard"},
{
name: "3D Anatomy",
id: "/anatomy",
},
name: "3D Anatomy", id: "/anatomy"},
{
name: "Report",
id: "/report",
},
name: "Report", id: "/report"},
]}
brandName="Silent Scout"
/>
@@ -53,13 +46,9 @@ export default function LandingPage() {
description="Overview of all current clinical modules. Monitor risk tiers and AI-agent analysis pipelines in real-time."
metrics={[
{
value: "117",
title: "Structures Segmented",
},
value: "117", title: "Structures Segmented"},
{
value: "8",
title: "Analysis Modules",
},
value: "8", title: "Analysis Modules"},
]}
imageSrc="http://img.b2bpic.net/free-photo/general-practitioner-discussing-with-doctor-video-conference-call_482257-123966.jpg"
mediaAnimation="slide-up"
@@ -75,24 +64,16 @@ export default function LandingPage() {
description="Real-time monitoring of imaging data streams."
features={[
{
title: "Auto-Sort",
description: "Prioritize urgent cases.",
imageSrc: "http://img.b2bpic.net/free-photo/healthcare-experts-discuss-recovery-strategies-treatment-center_482257-123173.jpg",
title: "Auto-Sort", description: "Prioritize urgent cases.", imageSrc: "http://img.b2bpic.net/free-photo/healthcare-experts-discuss-recovery-strategies-treatment-center_482257-123173.jpg", buttonIcon: ArrowRight
},
{
title: "Data Sync",
description: "Secure PACS integration.",
imageSrc: "http://img.b2bpic.net/free-photo/medical-staff-reviewing-diagnostic-reports-results-patient_482257-124422.jpg",
title: "Data Sync", description: "Secure PACS integration.", imageSrc: "http://img.b2bpic.net/free-photo/medical-staff-reviewing-diagnostic-reports-results-patient_482257-124422.jpg", buttonIcon: ArrowRight
},
{
title: "Agent Health",
description: "Check agent uptime.",
imageSrc: "http://img.b2bpic.net/free-photo/old-specialist-meeting-with-woman-patient-discuss-results-cabinet_482257-126936.jpg",
title: "Agent Health", description: "Check agent uptime.", imageSrc: "http://img.b2bpic.net/free-photo/old-specialist-meeting-with-woman-patient-discuss-results-cabinet_482257-126936.jpg", buttonIcon: ArrowRight
},
{
title: "Audit Logs",
description: "Full compliance tracking.",
imageSrc: "http://img.b2bpic.net/free-photo/doctor-provides-cancer-screening-guidance-patient-office_482257-126373.jpg",
title: "Audit Logs", description: "Full compliance tracking.", imageSrc: "http://img.b2bpic.net/free-photo/doctor-provides-cancer-screening-guidance-patient-office_482257-126373.jpg", buttonIcon: ArrowRight
},
]}
/>
@@ -103,29 +84,19 @@ export default function LandingPage() {
logoText="Silent Scout"
columns={[
{
title: "Platform",
items: [
title: "Platform", items: [
{
label: "Dashboard",
href: "/dashboard",
},
label: "Dashboard", href: "/dashboard"},
{
label: "3D Viewer",
href: "/anatomy",
},
label: "3D Viewer", href: "/anatomy"},
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{
label: "Clinical Papers",
href: "#",
},
label: "Clinical Papers", href: "#"},
{
label: "API Docs",
href: "#",
},
label: "API Docs", href: "#"},
],
},
]}