5 Commits

Author SHA1 Message Date
1ef898eded Update src/app/page.tsx 2026-03-06 10:56:31 +00:00
4a854d93ca Merge version_3 into main
Merge version_3 into main
2026-03-06 10:54:52 +00:00
a916ddf0b0 Update src/app/page.tsx 2026-03-06 10:54:48 +00:00
3093a09c3e Update src/app/layout.tsx 2026-03-06 10:54:47 +00:00
9c64347aeb Merge version_2 into main
Merge version_2 into main
2026-03-06 08:23:54 +00:00
2 changed files with 18 additions and 18 deletions

View File

@@ -1389,4 +1389,4 @@ export default function RootLayout({
</body> </body>
</html> </html>
); );
} }

View File

@@ -10,7 +10,7 @@ import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
import ContactCenter from "@/components/sections/contact/ContactCenter"; import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Heart, Zap, TrendingUp, MessageCircle, Mail, Shield, Clock, Lightbulb, Activity } from "lucide-react"; import { Heart, Zap, TrendingUp, MessageCircle, Mail, Shield, Clock, Lightbulb, Activity, AlertTriangle } from "lucide-react";
export default function HomePage() { export default function HomePage() {
const navItems = [ const navItems = [
@@ -77,8 +77,8 @@ export default function HomePage() {
tagIcon={Heart} tagIcon={Heart}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ text: "Start Chat", href: "/chat" },
{ text: "Emergency Guide", href: "/emergency" }, { text: "Emergency Guide", href: "/emergency" },
{ text: "Start Chat", href: "/chat" },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
background={{ variant: "canvas-reveal" }} background={{ variant: "canvas-reveal" }}
@@ -98,6 +98,18 @@ export default function HomePage() {
features={[ features={[
{ {
id: 1, id: 1,
title: "Emergency Detection", description:
"Our AI immediately recognizes serious symptoms like heavy bleeding, seizures, or poisoning and prioritizes urgent veterinary care recommendations.", phoneOne: {
imageSrc:
"http://img.b2bpic.net/free-photo/emergency-call-urgent-accidental-hotline-paramedic-concept_53876-125088.jpg?_wi=1", imageAlt: "Emergency alert interface"
},
phoneTwo: {
imageSrc:
"http://img.b2bpic.net/free-photo/emergency-call-urgent-accidental-hotline-paramedic-concept_53876-125088.jpg?_wi=2", imageAlt: "Emergency priority recommendations"
},
},
{
id: 2,
title: "AI Chat Assistant", description: title: "AI Chat Assistant", description:
"Ask questions about your pet's symptoms and get structured guidance on possible causes, immediate first aid, safe home remedies, and when to visit a veterinarian.", phoneOne: { "Ask questions about your pet's symptoms and get structured guidance on possible causes, immediate first aid, safe home remedies, and when to visit a veterinarian.", phoneOne: {
imageSrc: imageSrc:
@@ -109,7 +121,7 @@ export default function HomePage() {
}, },
}, },
{ {
id: 2, id: 3,
title: "Image Upload Analysis", description: title: "Image Upload Analysis", description:
"Upload photos of your injured or sick animal for AI-powered analysis. Receive visual symptom assessment and personalized guidance based on what the AI observes.", phoneOne: { "Upload photos of your injured or sick animal for AI-powered analysis. Receive visual symptom assessment and personalized guidance based on what the AI observes.", phoneOne: {
imageSrc: imageSrc:
@@ -121,7 +133,7 @@ export default function HomePage() {
}, },
}, },
{ {
id: 3, id: 4,
title: "Stray Animal Helper", description: title: "Stray Animal Helper", description:
"Found an injured stray? Step-by-step guidance on how to safely approach, provide first aid, and connect with local rescue services and veterinarians.", phoneOne: { "Found an injured stray? Step-by-step guidance on how to safely approach, provide first aid, and connect with local rescue services and veterinarians.", phoneOne: {
imageSrc: imageSrc:
@@ -132,18 +144,6 @@ export default function HomePage() {
"http://img.b2bpic.net/free-photo/girl-plays-with-domestic-rabbit-street-pet-concept_169016-59297.jpg?_wi=2", imageAlt: "Connecting with rescue services" "http://img.b2bpic.net/free-photo/girl-plays-with-domestic-rabbit-street-pet-concept_169016-59297.jpg?_wi=2", imageAlt: "Connecting with rescue services"
}, },
}, },
{
id: 4,
title: "Emergency Detection", description:
"Our AI immediately recognizes serious symptoms like heavy bleeding, seizures, or poisoning and prioritizes urgent veterinary care recommendations.", phoneOne: {
imageSrc:
"http://img.b2bpic.net/free-photo/emergency-call-urgent-accidental-hotline-paramedic-concept_53876-125088.jpg?_wi=1", imageAlt: "Emergency alert interface"
},
phoneTwo: {
imageSrc:
"http://img.b2bpic.net/free-photo/emergency-call-urgent-accidental-hotline-paramedic-concept_53876-125088.jpg?_wi=2", imageAlt: "Emergency priority recommendations"
},
},
]} ]}
showStepNumbers={true} showStepNumbers={true}
textboxLayout="default" textboxLayout="default"
@@ -256,4 +256,4 @@ export default function HomePage() {
/> />
</ThemeProvider> </ThemeProvider>
); );
} }