Merge version_2 into main #2
@@ -1,51 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Figtree } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const figtree = Figtree({
|
||||
variable: "--font-figtree", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "MediAI - AI Medical Assistant & Healthcare Platform", description: "Get instant AI-powered medical guidance, symptom checking, hospital location services, and access professional medical education resources. Your personal healthcare assistant powered by advanced AI.", keywords: "AI medical diagnosis, healthcare platform, symptom checker, hospital finder, medical education, telemedicine, AI diagnosis assistant", metadataBase: new URL("https://mediai.com"),
|
||||
openGraph: {
|
||||
title: "MediAI - Your AI-Powered Medical Assistant", description: "Intelligent healthcare guidance backed by AI and medical expertise. Symptom analysis, hospital locator, and medical education in one platform.", url: "https://mediai.com", siteName: "MediAI", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/a-modern-medical-professional-wearing-a--1772989758876-27d75567.png", alt: "MediAI Platform - AI Medical Assistant"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "MediAI - AI Medical Assistant", description: "Get instant medical guidance and find hospitals near you with our AI-powered healthcare platform.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/a-modern-medical-professional-wearing-a--1772989758876-27d75567.png"],
|
||||
},
|
||||
};
|
||||
title: "MediAI - Your Personal AI Medical Assistant", description: "Get instant medical guidance, AI-powered diagnosis assistance, and locate nearby hospitals. Powered by advanced AI trained on medical expertise."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -96,7 +96,7 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "AI Symptom Checker", description: "Input your symptoms and receive instant AI-powered analysis with potential conditions and severity assessment", bentoComponent: "chat", aiIcon: Brain,
|
||||
title: "AI Symptom Checker", description: "Get instant AI analysis of your symptoms with severity assessment and next steps.", bentoComponent: "chat", aiIcon: Brain,
|
||||
userIcon: Users,
|
||||
exchanges: [
|
||||
{
|
||||
@@ -109,17 +109,17 @@ export default function LandingPage() {
|
||||
placeholder: "Describe your symptoms..."
|
||||
},
|
||||
{
|
||||
title: "Location-Based Hospital Search", description: "Find nearby hospitals, clinics, and emergency care centers with real-time availability and directions", bentoComponent: "map"
|
||||
title: "Location-Based Hospital Search", description: "Find nearby hospitals with real-time availability and instant directions.", bentoComponent: "map"
|
||||
},
|
||||
{
|
||||
title: "Medical Education Hub", description: "Access comprehensive medical teaching resources and training materials for healthcare professionals", bentoComponent: "icon-info-cards", items: [
|
||||
title: "Medical Education Hub", description: "Access 50+ courses, 200+ video tutorials, and learn from 100+ expert instructors.", bentoComponent: "icon-info-cards", items: [
|
||||
{ icon: BookOpen, label: "Courses", value: "50+" },
|
||||
{ icon: Video, label: "Video Tutorials", value: "200+" },
|
||||
{ icon: Users, label: "Expert Instructors", value: "100+" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Real-Time Health Analytics", description: "Track health metrics and get personalized insights powered by advanced AI analysis", bentoComponent: "line-chart"
|
||||
title: "Real-Time Health Analytics", description: "Track health metrics and receive personalized AI-powered insights instantly.", bentoComponent: "line-chart"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -137,10 +137,10 @@ export default function LandingPage() {
|
||||
animationType="blur-reveal"
|
||||
features={[
|
||||
{
|
||||
title: "Symptom Analysis Engine", description: "Machine learning models trained on millions of medical cases", bentoComponent: "animated-bar-chart"
|
||||
title: "Symptom Analysis Engine", description: "Trained on millions of medical cases for accurate symptom interpretation.", bentoComponent: "animated-bar-chart"
|
||||
},
|
||||
{
|
||||
title: "Personalized Recommendations", description: "Get tailored medical advice based on your unique health profile", bentoComponent: "3d-stack-cards", items: [
|
||||
title: "Personalized Recommendations", description: "Receive tailored medical advice based on your unique health profile.", bentoComponent: "3d-stack-cards", items: [
|
||||
{
|
||||
icon: Heart,
|
||||
title: "Preventive Care", subtitle: "Stay Healthy", detail: "Proactive health management"
|
||||
@@ -156,7 +156,7 @@ export default function LandingPage() {
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Integration with Healthcare Providers", description: "Seamlessly share AI insights with your doctors and specialists", bentoComponent: "orbiting-icons", centerIcon: Stethoscope,
|
||||
title: "Integration with Healthcare Providers", description: "Seamlessly share AI insights with your doctors and specialists instantly.", bentoComponent: "orbiting-icons", centerIcon: Stethoscope,
|
||||
items: [
|
||||
{ icon: Hospital, ring: 1 },
|
||||
{ icon: Users, ring: 1 },
|
||||
@@ -166,7 +166,7 @@ export default function LandingPage() {
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Medical Knowledge Base", description: "Powered by comprehensive medical literature and clinical data", bentoComponent: "marquee", centerIcon: BookOpen,
|
||||
title: "Medical Knowledge Base", description: "Powered by comprehensive medical literature and clinical data.", bentoComponent: "marquee", centerIcon: BookOpen,
|
||||
variant: "text", texts: ["Cardiology", "Neurology", "Dermatology", "Orthopedics", "Pulmonology"]
|
||||
}
|
||||
]}
|
||||
@@ -211,15 +211,15 @@ export default function LandingPage() {
|
||||
blogs={[
|
||||
{
|
||||
id: "1", category: ["Cardiology", "AI"],
|
||||
title: "AI in Cardiovascular Diagnosis", excerpt: "Explore how artificial intelligence is revolutionizing heart disease detection and patient outcomes through advanced imaging analysis", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/advanced-cardiology-imaging-with-ai-anal-1772989761733-9ca4c9d3.png", imageAlt: "Cardiology AI analysis", authorName: "Dr. Sarah Mitchell", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/professional-headshot-of-a-female-cardio-1772989758898-b221c0b0.png", date: "15 Jan 2025"
|
||||
title: "AI in Cardiovascular Diagnosis", excerpt: "Discover how AI revolutionizes heart disease detection through advanced imaging analysis.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/advanced-cardiology-imaging-with-ai-anal-1772989761733-9ca4c9d3.png", imageAlt: "Cardiology AI analysis", authorName: "Dr. Sarah Mitchell", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/professional-headshot-of-a-female-cardio-1772989758898-b221c0b0.png", date: "15 Jan 2025"
|
||||
},
|
||||
{
|
||||
id: "2", category: ["Diagnosis", "Training"],
|
||||
title: "Symptom Recognition Masterclass", excerpt: "Learn clinical decision-making with real-world cases and AI-assisted diagnosis techniques for improved patient care", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/medical-education-training-session-with--1772989758636-80d61764.png", imageAlt: "Medical training session", authorName: "Prof. James Chen", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/professional-headshot-of-a-male-professo-1772989758292-7e216a37.png", date: "12 Jan 2025"
|
||||
title: "Symptom Recognition Masterclass", excerpt: "Master clinical decision-making with real-world cases and AI-assisted diagnosis techniques.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/medical-education-training-session-with--1772989758636-80d61764.png", imageAlt: "Medical training session", authorName: "Prof. James Chen", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/professional-headshot-of-a-male-professo-1772989758292-7e216a37.png", date: "12 Jan 2025"
|
||||
},
|
||||
{
|
||||
id: "3", category: ["Emergency", "Protocols"],
|
||||
title: "Emergency Response Protocols", excerpt: "Master critical emergency procedures and learn how AI assists in rapid triage and patient prioritization", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/emergency-room-environment-showing-healt-1772989759797-1e5386cf.png", imageAlt: "Emergency room AI integration", authorName: "Dr. Emily Rodriguez", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/professional-headshot-of-a-female-emerge-1772989758532-d1d9e620.png", date: "10 Jan 2025"
|
||||
title: "Emergency Response Protocols", excerpt: "Learn critical emergency procedures and how AI assists in rapid triage and patient prioritization.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/emergency-room-environment-showing-healt-1772989759797-1e5386cf.png", imageAlt: "Emergency room AI integration", authorName: "Dr. Emily Rodriguez", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afhk9sNCUbPcfTPlZ3jVVJP5zG/professional-headshot-of-a-female-emerge-1772989758532-d1d9e620.png", date: "10 Jan 2025"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user