Merge version_1 into main #2

Merged
bender merged 4 commits from version_1 into main 2026-04-04 16:45:49 +00:00
4 changed files with 76 additions and 366 deletions

View File

@@ -7,34 +7,24 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import TextAbout from '@/components/sections/about/TextAbout';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Divisions",
id: "/divisions",
},
{
name: "Products",
id: "/products",
},
{
name: "About",
id: "/about",
},
]}
navItems={[{ name: "Home", id: "/" }, { name: "Divisions", id: "/divisions" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }]}
brandName="Indicon Healthcare"
/>
</div>
@@ -56,20 +46,8 @@ export default function LandingPage() {
title="Leadership Team"
description="The minds behind Indicon Healthcare."
members={[
{
id: "t1",
name: "Dr. A. Sharma",
role: "CEO",
description: "Pharma visionary",
imageSrc: "http://img.b2bpic.net/free-photo/many-kind-medication-prepared-use-operation_1301-7797.jpg?_wi=2",
},
{
id: "t2",
name: "Ms. B. Kapoor",
role: "Head of Research",
description: "Expert chemist",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pills-with-containers-copy-space_23-2148533470.jpg?_wi=2",
},
{ id: "t1", name: "Dr. A. Sharma", role: "CEO", description: "Pharma visionary", imageSrc: "http://img.b2bpic.net/free-photo/many-kind-medication-prepared-use-operation_1301-7797.jpg" },
{ id: "t2", name: "Ms. B. Kapoor", role: "Head of Research", description: "Expert chemist", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pills-with-containers-copy-space_23-2148533470.jpg" },
]}
/>
</div>
@@ -77,42 +55,11 @@ export default function LandingPage() {
<div id="home-footer" data-section="home-footer">
<FooterBaseCard
logoText="Indicon Healthcare"
columns={[
{
title: "Divisions",
items: [
{
label: "CNS",
href: "/divisions",
},
{
label: "Nephroscience",
href: "/divisions",
},
{
label: "Nutritional",
href: "/divisions",
},
],
},
{
title: "Support",
items: [
{
label: "Contact Us",
href: "/contact",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
columns={[{ title: "Divisions", items: [{ label: "CNS", href: "/divisions" }, { label: "Nephroscience", href: "/divisions" }, { label: "Nutritional", href: "/divisions" }] }, { title: "Support", items: [{ label: "Contact Us", href: "/contact" }, { label: "Privacy Policy", href: "#" }] }]}
copyrightText="© 2025 Indicon Healthcare Pvt. Ltd."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -6,36 +6,26 @@ import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { Activity } from "lucide-react";
import { Activity, Brain } from "lucide-react";
export default function LandingPage() {
export default function DivisionsPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Divisions",
id: "/divisions",
},
{
name: "Products",
id: "/products",
},
{
name: "About",
id: "/about",
},
]}
navItems={[{ name: "Home", id: "/" }, { name: "Divisions", id: "/divisions" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }]}
brandName="Indicon Healthcare"
/>
</div>
@@ -46,21 +36,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "CNS",
description: "Focused on neurological health solutions.",
imageSrc: "http://img.b2bpic.net/free-photo/brain-booster-pills-container-still-life_23-2150760041.jpg?_wi=1",
},
{
title: "Nephroscience",
description: "Advanced renal care products.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pill-blister_23-2148021483.jpg?_wi=1",
},
{
title: "Nutrition",
description: "High-quality supplements for overall wellbeing.",
imageSrc: "http://img.b2bpic.net/free-photo/spa-still-life-with-natural-elements_23-2148201367.jpg?_wi=1",
},
{ title: "CNS", description: "Focused on neurological health solutions.", imageSrc: "http://img.b2bpic.net/free-photo/brain-booster-pills-container-still-life_23-2150760041.jpg", imageAlt: "CNS" },
{ title: "Nephroscience", description: "Advanced renal care products.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pill-blister_23-2148021483.jpg", imageAlt: "Nephro" },
{ title: "Nutrition", description: "High-quality supplements for overall wellbeing.", imageSrc: "http://img.b2bpic.net/free-photo/spa-still-life-with-natural-elements_23-2148201367.jpg", imageAlt: "Nutrition" },
]}
title="Our Therapeutic Focus"
description="Specialized divisions for CNS, Nephroscience, and Nutritional care."
@@ -76,36 +54,14 @@ export default function LandingPage() {
description="Deep dive into our medical divisions."
features={[
{
title: "Neurology",
description: "Brain and CNS health.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/brain-booster-pills-container-still-life_23-2150760041.jpg?_wi=2",
},
items: [
{
icon: Brain,
text: "Advanced formulas",
},
],
title: "Neurology", description: "Brain and CNS health.", media: { imageSrc: "http://img.b2bpic.net/free-photo/brain-booster-pills-container-still-life_23-2150760041.jpg", imageAlt: "Neurology" },
items: [{ icon: Brain, text: "Advanced formulas" }],
reverse: false,
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-science-banner-with-glass-containers_23-2149495072.jpg?_wi=2",
imageAlt: "pharmaceutical laboratory clean background",
},
{
title: "Nephrology",
description: "Kidney care focus.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pill-blister_23-2148021483.jpg?_wi=2",
},
items: [
{
icon: Activity,
text: "Clinical grade",
},
],
title: "Nephrology", description: "Kidney care focus.", media: { imageSrc: "http://img.b2bpic.net/free-photo/top-view-pill-blister_23-2148021483.jpg", imageAlt: "Nephrology" },
items: [{ icon: Activity, text: "Clinical grade" }],
reverse: true,
imageSrc: "http://img.b2bpic.net/free-photo/brain-booster-pills-container-still-life_23-2150760041.jpg?_wi=3",
imageAlt: "nutritional supplement jar mockup",
},
]}
/>
@@ -114,42 +70,11 @@ export default function LandingPage() {
<div id="home-footer" data-section="home-footer">
<FooterBaseCard
logoText="Indicon Healthcare"
columns={[
{
title: "Divisions",
items: [
{
label: "CNS",
href: "/divisions",
},
{
label: "Nephroscience",
href: "/divisions",
},
{
label: "Nutritional",
href: "/divisions",
},
],
},
{
title: "Support",
items: [
{
label: "Contact Us",
href: "/contact",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
columns={[{ title: "Divisions", items: [{ label: "CNS", href: "/divisions" }, { label: "Nephroscience", href: "/divisions" }, { label: "Nutritional", href: "/divisions" }] }, { title: "Support", items: [{ label: "Contact Us", href: "/contact" }, { label: "Privacy Policy", href: "#" }] }]}
copyrightText="© 2025 Indicon Healthcare Pvt. Ltd."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -17,27 +17,22 @@ export default function LandingPage() {
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Divisions",
id: "/divisions",
},
{
name: "Products",
id: "/products",
},
{
name: "About",
id: "/about",
},
{ name: "Home", id: "/" },
{ name: "Divisions", id: "/divisions" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
]}
brandName="Indicon Healthcare"
/>
@@ -45,18 +40,11 @@ export default function LandingPage() {
<div id="home-hero" data-section="home-hero">
<HeroBillboardScroll
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
title="Let's Create a Healthy World"
description="Indicon Healthcare Pvt. Ltd. is a pioneer in CNS, Nephroscience, and Nutritional solutions."
imageSrc="http://img.b2bpic.net/free-photo/horizontal-science-banner-with-glass-containers_23-2149495072.jpg?_wi=1"
buttons={[
{
text: "Explore Products",
href: "/products",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/horizontal-science-banner-with-glass-containers_23-2149495072.jpg"
buttons={[{ text: "Explore Products", href: "/products" }]}
/>
</div>
@@ -65,12 +53,7 @@ export default function LandingPage() {
useInvertedBackground={true}
title="Our Mission of Integrity"
tag="About Us"
buttons={[
{
text: "Learn More",
href: "/about",
},
]}
buttons={[{ text: "Learn More", href: "/about" }]}
/>
</div>
@@ -82,24 +65,9 @@ export default function LandingPage() {
title="Our Impact"
description="Delivering quality healthcare across India."
metrics={[
{
id: "m1",
icon: Activity,
title: "Clinical Trials",
value: "50+",
},
{
id: "m2",
icon: Users,
title: "Patients Served",
value: "1M+",
},
{
id: "m3",
icon: Building2,
title: "Partner Hospitals",
value: "200+",
},
{ id: "m1", icon: Activity, title: "Clinical Trials", value: "50+" },
{ id: "m2", icon: Users, title: "Patients Served", value: "1M+" },
{ id: "m3", icon: Building2, title: "Partner Hospitals", value: "200+" },
]}
/>
</div>
@@ -111,16 +79,8 @@ export default function LandingPage() {
sideDescription="Need help with our products? Check here."
faqsAnimation="slide-up"
faqs={[
{
id: "f1",
title: "How do I purchase?",
content: "You can contact our local distributors or order via our partners.",
},
{
id: "f2",
title: "Are these FDA approved?",
content: "All our products follow strict pharmaceutical safety standards.",
},
{ id: "f1", title: "How do I purchase?", content: "You can contact our local distributors or order via our partners." },
{ id: "f2", title: "Are these FDA approved?", content: "All our products follow strict pharmaceutical safety standards." },
]}
/>
</div>
@@ -131,13 +91,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Trusted by Experts"
description="Collaborating with top healthcare institutions."
names={[
"Apollo Pharmacy",
"MedPlus",
"HealthKart",
"Fortis",
"Manipal",
]}
names={["Apollo Pharmacy", "MedPlus", "HealthKart", "Fortis", "Manipal"]}
/>
</div>
@@ -146,34 +100,10 @@ export default function LandingPage() {
logoText="Indicon Healthcare"
columns={[
{
title: "Divisions",
items: [
{
label: "CNS",
href: "/divisions",
},
{
label: "Nephroscience",
href: "/divisions",
},
{
label: "Nutritional",
href: "/divisions",
},
],
title: "Divisions", items: [{ label: "CNS", href: "/divisions" }, { label: "Nephroscience", href: "/divisions" }, { label: "Nutritional", href: "/divisions" }],
},
{
title: "Support",
items: [
{
label: "Contact Us",
href: "/contact",
},
{
label: "Privacy Policy",
href: "#",
},
],
title: "Support", items: [{ label: "Contact Us", href: "/contact" }, { label: "Privacy Policy", href: "#" }],
},
]}
copyrightText="© 2025 Indicon Healthcare Pvt. Ltd."
@@ -182,4 +112,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -8,34 +8,24 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import { Droplets, Star } from "lucide-react";
export default function LandingPage() {
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Divisions",
id: "/divisions",
},
{
name: "Products",
id: "/products",
},
{
name: "About",
id: "/about",
},
]}
navItems={[{ name: "Home", id: "/" }, { name: "Divisions", id: "/divisions" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }]}
brandName="Indicon Healthcare"
/>
</div>
@@ -47,48 +37,12 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{
id: "1",
name: "Neupro-DM",
price: "₹450",
variant: "Nutritional",
imageSrc: "http://img.b2bpic.net/free-photo/brain-booster-pills-container-still-life_23-2150760041.jpg?_wi=4",
},
{
id: "2",
name: "Neupro Renal",
price: "₹600",
variant: "Nephro",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pill-blister_23-2148021483.jpg?_wi=3",
},
{
id: "3",
name: "Carnotop-Plus",
price: "₹250",
variant: "Tablets",
imageSrc: "http://img.b2bpic.net/free-photo/spa-still-life-with-natural-elements_23-2148201367.jpg?_wi=2",
},
{
id: "4",
name: "D-Con 60K",
price: "₹150",
variant: "Capsules",
imageSrc: "http://img.b2bpic.net/free-photo/plastic-bottle-pills_23-2147983052.jpg",
},
{
id: "5",
name: "Benfocon CD3",
price: "₹320",
variant: "Tablets",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pills-with-containers-copy-space_23-2148533470.jpg?_wi=1",
},
{
id: "6",
name: "Zerocon-P",
price: "₹280",
variant: "Tablets",
imageSrc: "http://img.b2bpic.net/free-photo/many-kind-medication-prepared-use-operation_1301-7797.jpg?_wi=1",
},
{ id: "1", name: "Neupro-DM", price: "₹450", variant: "Nutritional", imageSrc: "http://img.b2bpic.net/free-photo/brain-booster-pills-container-still-life_23-2150760041.jpg" },
{ id: "2", name: "Neupro Renal", price: "₹600", variant: "Nephro", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pill-blister_23-2148021483.jpg" },
{ id: "3", name: "Carnotop-Plus", price: "₹250", variant: "Tablets", imageSrc: "http://img.b2bpic.net/free-photo/spa-still-life-with-natural-elements_23-2148201367.jpg" },
{ id: "4", name: "D-Con 60K", price: "₹150", variant: "Capsules", imageSrc: "http://img.b2bpic.net/free-photo/plastic-bottle-pills_23-2147983052.jpg" },
{ id: "5", name: "Benfocon CD3", price: "₹320", variant: "Tablets", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pills-with-containers-copy-space_23-2148533470.jpg" },
{ id: "6", name: "Zerocon-P", price: "₹280", variant: "Tablets", imageSrc: "http://img.b2bpic.net/free-photo/many-kind-medication-prepared-use-operation_1301-7797.jpg" },
]}
title="Product Catalog"
description="Comprehensive range of high-quality nutritional and therapeutic solutions."
@@ -103,24 +57,9 @@ export default function LandingPage() {
title="Our Catalog Range"
description="Diversity in therapeutic segments."
metrics={[
{
id: "c1",
icon: Star,
title: "Oral Solutions",
value: "45",
},
{
id: "c2",
icon: Star,
title: "Tablets/Capsules",
value: "120",
},
{
id: "c3",
icon: Droplets,
title: "Injectables",
value: "15",
},
{ id: "c1", icon: Star, title: "Oral Solutions", value: "45" },
{ id: "c2", icon: Star, title: "Tablets/Capsules", value: "120" },
{ id: "c3", icon: Droplets, title: "Injectables", value: "15" },
]}
/>
</div>
@@ -128,42 +67,11 @@ export default function LandingPage() {
<div id="home-footer" data-section="home-footer">
<FooterBaseCard
logoText="Indicon Healthcare"
columns={[
{
title: "Divisions",
items: [
{
label: "CNS",
href: "/divisions",
},
{
label: "Nephroscience",
href: "/divisions",
},
{
label: "Nutritional",
href: "/divisions",
},
],
},
{
title: "Support",
items: [
{
label: "Contact Us",
href: "/contact",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
columns={[{ title: "Divisions", items: [{ label: "CNS", href: "/divisions" }, { label: "Nephroscience", href: "/divisions" }, { label: "Nutritional", href: "/divisions" }] }, { title: "Support", items: [{ label: "Contact Us", href: "/contact" }, { label: "Privacy Policy", href: "#" }] }]}
copyrightText="© 2025 Indicon Healthcare Pvt. Ltd."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}