Compare commits
37 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 97e50e83b3 | |||
| 3f5d76a77e | |||
| 98a9411352 | |||
| 268604062f | |||
| b8cba8a3ce | |||
| daeef9a424 | |||
| 90d6a23860 | |||
| da432aef43 | |||
| 0397f703c9 | |||
| f7b69f7212 | |||
| ea13e758bd | |||
| 29bef580b2 | |||
| 8d71ed0a17 | |||
| cbade21689 | |||
| 9e660b0e34 | |||
| cb5cc22662 | |||
| 4230ddbded | |||
| 9faae071d1 | |||
| 2ea75f859f | |||
| 41e3643ced | |||
| bb2827817c | |||
| 73082b269b | |||
| 9208f04ab4 | |||
| b6aaf90d11 | |||
| e0f30b10a7 | |||
| db0eb8af0b | |||
| 407a1eee98 | |||
| 1c96964319 | |||
| 24fc76a751 | |||
| fc2c9178c5 | |||
| 5f7e7bf6d9 | |||
| d48b28cfd6 | |||
| 6b0f355589 | |||
| c5a690c7e6 | |||
| f5a207f2bd | |||
| 7ac1140784 | |||
| 986cff715d |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -41,10 +42,10 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const roboto = Roboto({
|
||||
variable: "--font-roboto",
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -55,7 +56,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${roboto.variable} antialiased`}>
|
||||
<body className={`${publicSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
309
src/app/page.tsx
309
src/app/page.tsx
@@ -34,55 +34,38 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
name: "Home", id: "#hero"},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "#services",
|
||||
},
|
||||
name: "Services", id: "#services"},
|
||||
{
|
||||
name: "Plans",
|
||||
id: "#plans",
|
||||
},
|
||||
name: "Plans", id: "#plans"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "#testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "#faq",
|
||||
},
|
||||
name: "FAQ", id: "#faq"},
|
||||
{
|
||||
name: "Blog",
|
||||
id: "#blog",
|
||||
},
|
||||
name: "Blog", id: "#blog"},
|
||||
{
|
||||
name: "Reference", id: "/reference"},
|
||||
]}
|
||||
brandName="DIETANCE"
|
||||
button={{
|
||||
text: "Book Consultation",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Book Consultation", href: "#contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
imagePosition="right"
|
||||
title="Transform Your Health With Expert Nutrition Guidance"
|
||||
description="Dr Shubhangi Sharma delivers personalized diet consultations combining clinical expertise with modern 3D health visualization. Achieve sustainable wellness through science-backed strategies tailored to your lifestyle."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Your Consultation Today",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Book Your Consultation Today", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-using-tablet-with-summer-fruit-flat-lay_53876-133986.jpg"
|
||||
imageAlt="Dr. Shubhangi Sharma consulting a client with 3D health visualization"
|
||||
@@ -90,52 +73,32 @@ export default function LandingPage() {
|
||||
fixedMediaHeight={true}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/i-choose-you_329181-695.jpg",
|
||||
alt: "Happy client 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/i-choose-you_329181-695.jpg", alt: "Happy client 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-smiling-mature-businessman-outdoors_23-2147956325.jpg",
|
||||
alt: "Happy client 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-smiling-mature-businessman-outdoors_23-2147956325.jpg", alt: "Happy client 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/funny-young-adult-smiling-with-satisfaction_179666-2018.jpg",
|
||||
alt: "Happy client 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/funny-young-adult-smiling-with-satisfaction_179666-2018.jpg", alt: "Happy client 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-emotiojnal-young-man-suit-poiting-with-two-finger-you_171337-9568.jpg",
|
||||
alt: "Happy client 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-emotiojnal-young-man-suit-poiting-with-two-finger-you_171337-9568.jpg", alt: "Happy client 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/blond-business-woman-holding-hand-pocket_23-2148095771.jpg",
|
||||
alt: "Happy client 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/blond-business-woman-holding-hand-pocket_23-2148095771.jpg", alt: "Happy client 5"},
|
||||
]}
|
||||
avatarText="Trusted by over 1000+ clients"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Personalized Plans",
|
||||
icon: ListChecks,
|
||||
type: "text-icon", text: "Personalized Plans", icon: ListChecks,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Online Consultations",
|
||||
icon: Laptop,
|
||||
type: "text-icon", text: "Online Consultations", icon: Laptop,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "3D Health Visualization",
|
||||
icon: Box,
|
||||
type: "text-icon", text: "3D Health Visualization", icon: Box,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Family Wellness",
|
||||
icon: Home,
|
||||
type: "text-icon", text: "Family Wellness", icon: Home,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Evidence-Based Nutrition",
|
||||
icon: Scale,
|
||||
type: "text-icon", text: "Evidence-Based Nutrition", icon: Scale,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -161,23 +124,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Customized Diet Plans",
|
||||
description: "Receive a science-backed nutrition plan tailored specifically to your body, goals, and dietary preferences, with detailed meal suggestions.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/meal-planning-notepad-food-arrangement_23-2149099847.jpg",
|
||||
imageAlt: "Personalized diet plan document with healthy food",
|
||||
},
|
||||
title: "Customized Diet Plans", description: "Receive a science-backed nutrition plan tailored specifically to your body, goals, and dietary preferences, with detailed meal suggestions.", imageSrc: "http://img.b2bpic.net/free-photo/meal-planning-notepad-food-arrangement_23-2149099847.jpg", imageAlt: "Personalized diet plan document with healthy food"},
|
||||
{
|
||||
title: "Convenient Online Consultations",
|
||||
description: "Access expert guidance from anywhere with flexible online video consultations, making it easy to integrate wellness into your busy schedule.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-cute-young-girl-vlogger-showing-her-breakfast-camera-recording-vlog-her-bedroom_1258-254201.jpg",
|
||||
imageAlt: "Woman on a laptop during an online diet consultation",
|
||||
},
|
||||
title: "Convenient Online Consultations", description: "Access expert guidance from anywhere with flexible online video consultations, making it easy to integrate wellness into your busy schedule.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-cute-young-girl-vlogger-showing-her-breakfast-camera-recording-vlog-her-bedroom_1258-254201.jpg", imageAlt: "Woman on a laptop during an online diet consultation"},
|
||||
{
|
||||
title: "Family Wellness Programs",
|
||||
description: "Empower your entire family with healthy eating habits. Our programs provide guidance for children and adults, fostering a foundation for lifelong wellness.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-roommates-indoors_23-2148903543.jpg",
|
||||
imageAlt: "Family eating healthy together at a kitchen table",
|
||||
},
|
||||
title: "Family Wellness Programs", description: "Empower your entire family with healthy eating habits. Our programs provide guidance for children and adults, fostering a foundation for lifelong wellness.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-roommates-indoors_23-2148903543.jpg", imageAlt: "Family eating healthy together at a kitchen table"},
|
||||
]}
|
||||
title="Personalized Nutrition Services for Every Lifestyle"
|
||||
description="From busy professionals to growing families, we offer comprehensive and flexible diet consultation services designed to fit your unique needs and help you thrive."
|
||||
@@ -192,12 +143,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
team={[
|
||||
{
|
||||
id: "dr-shubhangi",
|
||||
name: "Dr. Shubhangi Sharma",
|
||||
role: "Founder & Lead Dietitian",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-doctor-praying-yellow-background-human-covid-medic-pandemic_179666-11786.jpg",
|
||||
imageAlt: "Portrait of Dr. Shubhangi Sharma",
|
||||
},
|
||||
id: "dr-shubhangi", name: "Dr. Shubhangi Sharma", role: "Founder & Lead Dietitian", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-doctor-praying-yellow-background-human-covid-medic-pandemic_179666-11786.jpg", imageAlt: "Portrait of Dr. Shubhangi Sharma"},
|
||||
]}
|
||||
title="Dr. Shubhangi Sharma: Your Dedicated Nutrition Expert"
|
||||
description="Dr. Sharma combines advanced clinical knowledge with a compassionate approach, guiding clients toward holistic health through personalized, evidence-based nutrition."
|
||||
@@ -212,43 +158,19 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "basic-plan",
|
||||
badge: "Start",
|
||||
badgeIcon: Leaf,
|
||||
price: "₹4,999",
|
||||
subtitle: "Single Consultation",
|
||||
features: [
|
||||
"1 Initial Assessment",
|
||||
"Personalized Diet Plan (1-month)",
|
||||
"Basic Progress Tracking",
|
||||
"Email Support",
|
||||
],
|
||||
id: "basic-plan", badge: "Start", badgeIcon: Leaf,
|
||||
price: "₹4,999", subtitle: "Single Consultation", features: [
|
||||
"1 Initial Assessment", "Personalized Diet Plan (1-month)", "Basic Progress Tracking", "Email Support"],
|
||||
},
|
||||
{
|
||||
id: "pro-plan",
|
||||
badge: "Popular",
|
||||
badgeIcon: Sparkles,
|
||||
price: "₹12,999",
|
||||
subtitle: "3-Month Transformation",
|
||||
features: [
|
||||
"Initial + 2 Follow-ups",
|
||||
"Advanced Diet Plan (3-months)",
|
||||
"Detailed 3D Progress Report",
|
||||
"WhatsApp Support",
|
||||
],
|
||||
id: "pro-plan", badge: "Popular", badgeIcon: Sparkles,
|
||||
price: "₹12,999", subtitle: "3-Month Transformation", features: [
|
||||
"Initial + 2 Follow-ups", "Advanced Diet Plan (3-months)", "Detailed 3D Progress Report", "WhatsApp Support"],
|
||||
},
|
||||
{
|
||||
id: "premium-plan",
|
||||
badge: "Best Value",
|
||||
badgeIcon: Crown,
|
||||
price: "₹19,999",
|
||||
subtitle: "6-Month Wellness Journey",
|
||||
features: [
|
||||
"Initial + 5 Follow-ups",
|
||||
"Comprehensive Diet Plan (6-months)",
|
||||
"Holistic 3D Health Monitoring",
|
||||
"Priority WhatsApp & Call Support",
|
||||
],
|
||||
id: "premium-plan", badge: "Best Value", badgeIcon: Crown,
|
||||
price: "₹19,999", subtitle: "6-Month Wellness Journey", features: [
|
||||
"Initial + 5 Follow-ups", "Comprehensive Diet Plan (6-months)", "Holistic 3D Health Monitoring", "Priority WhatsApp & Call Support"],
|
||||
},
|
||||
]}
|
||||
title="Flexible Consultation Plans"
|
||||
@@ -265,25 +187,15 @@ export default function LandingPage() {
|
||||
author="Priya S. (Corporate Professional)"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/bearded-man-enjoying-last-rumors-yellow_179666-1437.jpg",
|
||||
alt: "Avatar of a happy male client",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/bearded-man-enjoying-last-rumors-yellow_179666-1437.jpg", alt: "Avatar of a happy male client"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/closeup-portrait-successful-happy-smiling-young-woman-beige-jacket-glasses-standing-lobby-office-reception-greeting-business-client-with-pleasant-grin-inviting-company_197531-30568.jpg",
|
||||
alt: "Avatar of a happy female client",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/closeup-portrait-successful-happy-smiling-young-woman-beige-jacket-glasses-standing-lobby-office-reception-greeting-business-client-with-pleasant-grin-inviting-company_197531-30568.jpg", alt: "Avatar of a happy female client"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg",
|
||||
alt: "Avatar of a happy older male client",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg", alt: "Avatar of a happy older male client"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-young-woman-kitchen-holds-leek-her-hands_169016-23772.jpg",
|
||||
alt: "Avatar of a happy young female client",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-young-woman-kitchen-holds-leek-her-hands_169016-23772.jpg", alt: "Avatar of a happy young female client"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/shot-beautiful-young-businesswoman-wearing-blue-chiffon-shirt-while-standing-with-folded-arms-gray-marble-wall_158595-6769.jpg",
|
||||
alt: "Avatar of a confident client",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/shot-beautiful-young-businesswoman-wearing-blue-chiffon-shirt-while-standing-with-folded-arms-gray-marble-wall_158595-6769.jpg", alt: "Avatar of a confident client"},
|
||||
]}
|
||||
ratingAnimation="blur-reveal"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -296,35 +208,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1",
|
||||
title: "How do personalized diet plans work?",
|
||||
content: "Our personalized diet plans begin with a thorough assessment of your health, lifestyle, and goals. Dr. Sharma then designs a custom plan, often incorporating 3D visualization, to ensure it's effective and sustainable for you.",
|
||||
},
|
||||
id: "faq-1", title: "How do personalized diet plans work?", content: "Our personalized diet plans begin with a thorough assessment of your health, lifestyle, and goals. Dr. Sharma then designs a custom plan, often incorporating 3D visualization, to ensure it's effective and sustainable for you."},
|
||||
{
|
||||
id: "faq-2",
|
||||
title: "Are online consultations effective?",
|
||||
content: "Yes, online consultations are highly effective and convenient. They offer the same personalized guidance as in-person sessions, allowing you to connect with Dr. Sharma from the comfort of your home or office.",
|
||||
},
|
||||
id: "faq-2", title: "Are online consultations effective?", content: "Yes, online consultations are highly effective and convenient. They offer the same personalized guidance as in-person sessions, allowing you to connect with Dr. Sharma from the comfort of your home or office."},
|
||||
{
|
||||
id: "faq-3",
|
||||
title: "What is 3D health visualization?",
|
||||
content: "3D health visualization is an innovative tool used to provide a detailed, interactive view of your body composition and progress. It helps you understand your health metrics visually and motivates you on your wellness journey.",
|
||||
},
|
||||
id: "faq-3", title: "What is 3D health visualization?", content: "3D health visualization is an innovative tool used to provide a detailed, interactive view of your body composition and progress. It helps you understand your health metrics visually and motivates you on your wellness journey."},
|
||||
{
|
||||
id: "faq-4",
|
||||
title: "How do I book a consultation?",
|
||||
content: "You can easily book a consultation by clicking on the 'Book Your Consultation Today' button. You'll be directed to our secure booking page where you can select a plan and schedule your session.",
|
||||
},
|
||||
id: "faq-4", title: "How do I book a consultation?", content: "You can easily book a consultation by clicking on the 'Book Your Consultation Today' button. You'll be directed to our secure booking page where you can select a plan and schedule your session."},
|
||||
{
|
||||
id: "faq-5",
|
||||
title: "Do you offer family nutrition guidance?",
|
||||
content: "Absolutely. We provide tailored family wellness programs designed to help every member of your household develop healthy eating habits and enjoy a balanced lifestyle together.",
|
||||
},
|
||||
id: "faq-5", title: "Do you offer family nutrition guidance?", content: "Absolutely. We provide tailored family wellness programs designed to help every member of your household develop healthy eating habits and enjoy a balanced lifestyle together."},
|
||||
{
|
||||
id: "faq-6",
|
||||
title: "What if I have specific dietary restrictions?",
|
||||
content: "Dr. Sharma specializes in creating plans that accommodate various dietary restrictions, allergies, and preferences. Your plan will be uniquely crafted to ensure both nutritional adequacy and enjoyment.",
|
||||
},
|
||||
id: "faq-6", title: "What if I have specific dietary restrictions?", content: "Dr. Sharma specializes in creating plans that accommodate various dietary restrictions, allergies, and preferences. Your plan will be uniquely crafted to ensure both nutritional adequacy and enjoyment."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find quick answers to common queries about our services, consultations, and personalized diet plans."
|
||||
@@ -335,7 +229,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardThree
|
||||
animationType="slide-up"
|
||||
animationType="scale-rotate"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
title="Latest in Health & Nutrition"
|
||||
@@ -343,38 +237,11 @@ export default function LandingPage() {
|
||||
tag="Insights & Resources"
|
||||
blogs={[
|
||||
{
|
||||
id: "blog-1",
|
||||
category: "Healthy Eating",
|
||||
title: "5 Easy Steps to a Balanced Breakfast",
|
||||
excerpt: "Discover simple yet powerful ways to kickstart your day with nutritious and delicious breakfast options.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/kiwifruit-banana-creativity-wood-dry-fruit_1252-639.jpg",
|
||||
imageAlt: "Healthy breakfast bowl with berries and oats",
|
||||
authorName: "Dr. Shubhangi Sharma",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/doctor-with-hands-pocket-looking-camera_23-2148285727.jpg",
|
||||
date: "July 15, 2024",
|
||||
},
|
||||
id: "blog-1", category: "Healthy Eating", title: "5 Easy Steps to a Balanced Breakfast", excerpt: "Discover simple yet powerful ways to kickstart your day with nutritious and delicious breakfast options.", imageSrc: "http://img.b2bpic.net/free-photo/kiwifruit-banana-creativity-wood-dry-fruit_1252-639.jpg", imageAlt: "Healthy breakfast bowl with berries and oats", authorName: "Dr. Shubhangi Sharma", authorAvatar: "http://img.b2bpic.net/free-photo/doctor-with-hands-pocket-looking-camera_23-2148285727.jpg", date: "July 15, 2024"},
|
||||
{
|
||||
id: "blog-2",
|
||||
category: "Lifestyle",
|
||||
title: "Integrating Mindfulness into Your Diet",
|
||||
excerpt: "Learn how mindful eating can transform your relationship with food and contribute to overall well-being.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-with-laptop_23-2149144803.jpg",
|
||||
imageAlt: "People doing yoga outdoors, symbolizing a healthy lifestyle",
|
||||
authorName: "Dr. Shubhangi Sharma",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/smiling-adult-slavic-man-doctor-uniform-with-stethoscope-looking-front_141793-124210.jpg",
|
||||
date: "July 08, 2024",
|
||||
},
|
||||
id: "blog-2", category: "Lifestyle", title: "Integrating Mindfulness into Your Diet", excerpt: "Learn how mindful eating can transform your relationship with food and contribute to overall well-being.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-with-laptop_23-2149144803.jpg", imageAlt: "People doing yoga outdoors, symbolizing a healthy lifestyle", authorName: "Dr. Shubhangi Sharma", authorAvatar: "http://img.b2bpic.net/free-photo/smiling-adult-slavic-man-doctor-uniform-with-stethoscope-looking-front_141793-124210.jpg", date: "July 08, 2024"},
|
||||
{
|
||||
id: "blog-3",
|
||||
category: "Recipes",
|
||||
title: "Quick & Nutritious Dinners for Busy Professionals",
|
||||
excerpt: "Explore fast, healthy, and delicious dinner recipes designed to save you time without compromising on nutrition.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-cabbage-woman-s-hand-kitchen-table-vegetables_169016-24205.jpg",
|
||||
imageAlt: "Colorful vegetables on a chopping board",
|
||||
authorName: "Dr. Shubhangi Sharma",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/content-young-asian-female-doctor-holding-apple-palm_1262-12317.jpg",
|
||||
date: "July 01, 2024",
|
||||
},
|
||||
id: "blog-3", category: "Recipes", title: "Quick & Nutritious Dinners for Busy Professionals", excerpt: "Explore fast, healthy, and delicious dinner recipes designed to save you time without compromising on nutrition.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-cabbage-woman-s-hand-kitchen-table-vegetables_169016-24205.jpg", imageAlt: "Colorful vegetables on a chopping board", authorName: "Dr. Shubhangi Sharma", authorAvatar: "http://img.b2bpic.net/free-photo/content-young-asian-female-doctor-holding-apple-palm_1262-12317.jpg", date: "July 01, 2024"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -386,31 +253,20 @@ export default function LandingPage() {
|
||||
description="Ready to transform your health? Fill out the form below to schedule your consultation with Dr. Shubhangi Sharma."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Full Name",
|
||||
required: true,
|
||||
name: "name", type: "text", placeholder: "Your Full Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email Address",
|
||||
required: true,
|
||||
name: "email", type: "email", placeholder: "Your Email Address", required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Your Phone Number (Optional)",
|
||||
},
|
||||
name: "phone", type: "tel", placeholder: "Your Phone Number (Optional)"},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Tell us about your health goals (Optional)",
|
||||
rows: 4,
|
||||
name: "message", placeholder: "Tell us about your health goals (Optional)", rows: 4,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-man-reading-digital-magazine_23-2150162646.jpg"
|
||||
imageAlt="Online calendar booking system on a laptop"
|
||||
mediaAnimation="opacity"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
buttonText="Schedule Consultation"
|
||||
/>
|
||||
@@ -418,63 +274,42 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoSrc="http://img.b2bpic.net/free-vector/nutrition-logo-design-template_742173-29615.jpg"
|
||||
logoSrc="http://img.b2bpic.net/free-vector/vector-leaf-icon_53876-137688.jpg"
|
||||
logoAlt="DIETANCE logo"
|
||||
logoText="DIETANCE"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Custom Diet Plans",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Custom Diet Plans", href: "#services"},
|
||||
{
|
||||
label: "Online Consultations",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Online Consultations", href: "#services"},
|
||||
{
|
||||
label: "Family Programs",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Family Programs", href: "#services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Dr. Sharma",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About Dr. Sharma", href: "#about"},
|
||||
{
|
||||
label: "Plans & Pricing",
|
||||
href: "#plans",
|
||||
},
|
||||
label: "Plans & Pricing", href: "#plans"},
|
||||
{
|
||||
label: "Testimonials",
|
||||
href: "#testimonials",
|
||||
},
|
||||
label: "Testimonials", href: "#testimonials"},
|
||||
{
|
||||
label: "Blog",
|
||||
href: "#blog",
|
||||
},
|
||||
label: "Blog", href: "#blog"},
|
||||
{
|
||||
label: "Reference", href: "/reference"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#faq",
|
||||
},
|
||||
label: "FAQ", href: "#faq"},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact Us", href: "#contact"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -484,4 +319,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
124
src/app/reference/page.tsx
Normal file
124
src/app/reference/page.tsx
Normal file
@@ -0,0 +1,124 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
|
||||
export default function ReferencePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="largeSmall"
|
||||
background="floatingGradient"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "#hero"},
|
||||
{
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
name: "Services", id: "#services"},
|
||||
{
|
||||
name: "Plans", id: "#plans"},
|
||||
{
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
{
|
||||
name: "FAQ", id: "#faq"},
|
||||
{
|
||||
name: "Blog", id: "#blog"},
|
||||
{
|
||||
name: "Reference", id: "/reference"},
|
||||
]}
|
||||
brandName="DIETANCE"
|
||||
button={{
|
||||
text: "Book Consultation", href: "#contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="reference" data-section="reference">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="References & Resources"
|
||||
subtitle="Key Information and Guidelines"
|
||||
sections={[
|
||||
{
|
||||
heading: "Terms of Service", content: [
|
||||
{ type: "paragraph", text: "Welcome to DIETANCE. By accessing or using our services, you agree to comply with and be bound by the following terms and conditions. Please review these terms carefully. If you do not agree to these terms, you should not use this site or our services." },
|
||||
{ type: "numbered-list", items: ["Acceptance of Terms", "Modification of Terms", "Privacy Policy", "Intellectual Property", "User Conduct", "Disclaimer of Warranties", "Limitation of Liability", "Governing Law", "Contact Information"] }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Privacy Policy", content: [
|
||||
{ type: "paragraph", text: "At DIETANCE, we are committed to protecting your privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website and use our services." },
|
||||
{ type: "list", items: ["Information We Collect", "How We Use Your Information", "Disclosure of Your Information", "Security of Your Information", "Your Choices Regarding Your Information", "Changes to This Privacy Policy"] }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Disclaimer", content: [
|
||||
{ type: "paragraph", text: "The information provided by DIETANCE on our website and through our consultations is for general informational purposes only and does not constitute medical advice. Always seek the advice of a qualified healthcare professional for any questions you may have regarding a medical condition or health objectives." }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoSrc="http://img.b2bpic.net/free-vector/nutrition-logo-design-template_742173-29615.jpg"
|
||||
logoAlt="DIETANCE logo"
|
||||
logoText="DIETANCE"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Custom Diet Plans", href: "#services"},
|
||||
{
|
||||
label: "Online Consultations", href: "#services"},
|
||||
{
|
||||
label: "Family Programs", href: "#services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Dr. Sharma", href: "#about"},
|
||||
{
|
||||
label: "Plans & Pricing", href: "#plans"},
|
||||
{
|
||||
label: "Testimonials", href: "#testimonials"},
|
||||
{
|
||||
label: "Blog", href: "#blog"},
|
||||
{
|
||||
label: "Reference", href: "/reference"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "FAQ", href: "#faq"},
|
||||
{
|
||||
label: "Contact Us", href: "#contact"},
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 DIETANCE. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-roboto), sans-serif;
|
||||
font-family: var(--font-public-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-roboto), sans-serif;
|
||||
font-family: var(--font-public-sans), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #FDFCF5;
|
||||
--card: #FFFFFF;
|
||||
--foreground: #2E2E2E;
|
||||
--primary-cta: #4682B4;
|
||||
--primary-cta-text: #FFFFFF;
|
||||
--secondary-cta: #FF7F50;
|
||||
--secondary-cta-text: #2E2E2E;
|
||||
--accent: #8FBC8F;
|
||||
--background-accent: #FFD700;
|
||||
--background: #5cebeb;
|
||||
--card: #0e98c4;
|
||||
--foreground: #2a2928;
|
||||
--primary-cta: #7a0ef0;
|
||||
--primary-cta-text: #f5f4ef;
|
||||
--secondary-cta: #ecebea;
|
||||
--secondary-cta-text: #b3de7e;
|
||||
--accent: #ffffff;
|
||||
--background-accent: #c6b180;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user