diff --git a/components/elements/PortfolioFilter3.js b/components/elements/PortfolioFilter3.js
deleted file mode 100644
index 3797e9a..0000000
--- a/components/elements/PortfolioFilter3.js
+++ /dev/null
@@ -1,199 +0,0 @@
-
-'use client'
-import Isotope from "isotope-layout"
-import Link from "next/link"
-import { useCallback, useEffect, useRef, useState } from "react"
-
-export default function PortfolioFilter3() {
- // Isotope
- const isotope = useRef()
- const [filterKey, setFilterKey] = useState("*")
- useEffect(() => {
- setTimeout(() => {
- isotope.current = new Isotope(".items-container", {
- itemSelector: ".masonry-item",
- // layoutMode: "fitRows",
- percentPosition: true,
- masonry: {
- columnWidth: ".masonry-item",
- },
- animationOptions: {
- duration: 750,
- easing: "linear",
- queue: false,
- },
- })
- }, 1000)
- }, [])
- useEffect(() => {
- if (isotope.current) {
- filterKey === "*"
- ? isotope.current.arrange({ filter: `*` })
- : isotope.current.arrange({ filter: `.${filterKey}` })
- }
- }, [filterKey])
- const handleFilterKeyChange = useCallback((key) => () => {
- setFilterKey(key)
- },
- []
- )
-
- const activeBtn = (value) => (value === filterKey ? "filter active" : "filter")
-
-
-
- return (
- <>
-
-
-
- All Topics 0
- Business 0
- Coaching 0
- Financial 0
- Marketing 0
- Technical 0
-
-
-
-
- {/* Project Block */}
-
-
-
-
-
-
-
-
-
Marketing
- Business Leadership
-
-
-
-
- {/* Project Block */}
-
-
-
-
-
-
-
-
-
Technical
- Market Expansion
-
-
-
-
- {/* Project Block */}
-
-
-
-
-
-
-
-
-
Coaching
- Money Savings
-
-
-
-
- {/* Project Block */}
-
-
-
-
-
-
-
-
-
Business
- Helthy Solutions
-
-
-
-
- {/* Project Block */}
-
-
-
-
-
-
-
-
-
Marketing
- Startup Business
-
-
-
-
- {/* Project Block */}
-
-
-
-
-
-
-
-
-
Technical
- Market Expansion
-
-
-
-
- {/* Project Block */}
-
-
-
-
-
-
-
-
-
Marketing
- Business Leadership
-
-
-
-
- {/* Project Block */}
-
-
-
-
-
-
-
-
-
Financial
- Capital Management
-
-
-
-
- {/* Project Block */}
-
-
-
-
-
-
-
-
-
Financial
- Capital Management
-
-
-
-
-
-
- >
- )
-}
diff --git a/components/elements/PortfolioFilter4.js b/components/elements/PortfolioFilter4.js
deleted file mode 100644
index b683131..0000000
--- a/components/elements/PortfolioFilter4.js
+++ /dev/null
@@ -1,173 +0,0 @@
-
-'use client'
-import Isotope from "isotope-layout"
-import Link from "next/link"
-import { useCallback, useEffect, useRef, useState } from "react"
-
-export default function PortfolioFilter4() {
- // Isotope
- const isotope = useRef()
- const [filterKey, setFilterKey] = useState("*")
- useEffect(() => {
- setTimeout(() => {
- isotope.current = new Isotope(".isotope-block", {
- itemSelector: ".project-block-six",
- // layoutMode: "fitRows",
- percentPosition: true,
- masonry: {
- columnWidth: ".project-block-six",
- },
- animationOptions: {
- duration: 750,
- easing: "linear",
- queue: false,
- },
- })
- }, 1000)
- }, [])
- useEffect(() => {
- if (isotope.current) {
- filterKey === "*"
- ? isotope.current.arrange({ filter: `*` })
- : isotope.current.arrange({ filter: `.${filterKey}` })
- }
- }, [filterKey])
- const handleFilterKeyChange = useCallback((key) => () => {
- setFilterKey(key)
- },
- []
- )
-
- const activeBtn = (value) => (value === filterKey ? "filter active" : "filter")
-
-
-
- return (
- <>
-
-
-
-
-
-
-
Marketing
- Leadership
-
-
-
-
-
-
-
-
-
Financial
- Responsibility
-
-
-
-
-
-
-
-
-
Technical
- Engineering
-
-
-
-
-
-
-
-
-
Coaching
- Manufacturer
-
-
-
-
-
-
-
-
-
Business
- Management
-
-
-
-
-
-
-
-
-
Marketing
- Data Analytics
-
-
-
-
-
-
-
-
-
Technical
- Reservations
-
-
-
-
-
-
-
-
-
Marketing
- Inventory
-
-
-
-
-
-
-
-
-
Financial
- Innovative
-
-
-
-
-
-
-
-
-
Technical
- Supply Chain
-
-
-
-
-
-
-
-
-
Marketing
- Expansion
-
-
-
-
-
-
-
-
-
Financial
- Remote Support
-
-
-
-
-
-
- >
- )
-}
diff --git a/components/elements/PortfolioFilter5.js b/components/elements/PortfolioFilter5.js
deleted file mode 100644
index fd28da0..0000000
--- a/components/elements/PortfolioFilter5.js
+++ /dev/null
@@ -1,120 +0,0 @@
-
-'use client'
-import Isotope from "isotope-layout"
-import Link from "next/link"
-import { useCallback, useEffect, useRef, useState } from "react"
-
-export default function PortfolioFilter5() {
- // Isotope
- const isotope = useRef()
- const [filterKey, setFilterKey] = useState("*")
- useEffect(() => {
- setTimeout(() => {
- isotope.current = new Isotope(".isotope-block", {
- itemSelector: ".project-block-three",
- // layoutMode: "fitRows",
- percentPosition: true,
- masonry: {
- columnWidth: ".project-block-three",
- },
- animationOptions: {
- duration: 750,
- easing: "linear",
- queue: false,
- },
- })
- }, 1000)
- }, [])
- useEffect(() => {
- if (isotope.current) {
- filterKey === "*"
- ? isotope.current.arrange({ filter: `*` })
- : isotope.current.arrange({ filter: `.${filterKey}` })
- }
- }, [filterKey])
- const handleFilterKeyChange = useCallback((key) => () => {
- setFilterKey(key)
- },
- []
- )
-
- const activeBtn = (value) => (value === filterKey ? "filter active" : "filter")
-
-
-
- return (
- <>
-
-
-
-
-
-
-
-
Technical
-
Market Expansion
-
-
-
-
-
-
-
-
-
-
-
Technical
-
Market Expansion
-
-
-
-
-
-
-
-
-
-
-
Technical
-
Market Expansion
-
-
-
-
-
-
-
-
-
-
-
Technical
-
Market Expansion
-
-
-
-
-
-
-
-
-
-
-
Technical
-
Market Expansion
-
-
-
-
-
-
-
-
1.6k
- projects Completed
- View All Projects
-
-
-
-
- >
- )
-}
diff --git a/components/elements/QuantityInput.js b/components/elements/QuantityInput.js
deleted file mode 100644
index 8d2aa62..0000000
--- a/components/elements/QuantityInput.js
+++ /dev/null
@@ -1,31 +0,0 @@
-import { useState } from 'react'
-export default function QuantityInput() {
- const [value, setValue] = useState(1)
-
- const handleUpClick = () => {
- setValue(value + 1)
- }
-
- const handleDownClick = () => {
- setValue(value - 1)
- }
-
- return (
- <>
-
-
-
- setValue(e.target.value)} />
-
-
-
-
-
-
-
-
-
-
- >
- )
-}
\ No newline at end of file
diff --git a/components/elements/ThemeSwitch.js b/components/elements/ThemeSwitch.js
deleted file mode 100644
index cf2d235..0000000
--- a/components/elements/ThemeSwitch.js
+++ /dev/null
@@ -1,27 +0,0 @@
-import { useEffect, useState } from "react"
-
-export default function ThemeSwitch() {
- const [togglETHeme, setTogglETHeme] = useState(
- () => JSON.parse(localStorage.getItem("togglETHeme")) || "light-theme"
- )
- useEffect(() => {
- localStorage.setItem("togglETHeme", JSON.stringify(togglETHeme))
- document.body.classList.add(togglETHeme)
- return () => {
- document.body.classList.remove(togglETHeme)
- }
- }, [togglETHeme])
-
- return (
- <>
- togglETHeme === "light-theme" ? setTogglETHeme("dark-theme") : setTogglETHeme("light-theme")
- }
- >
-
-
-
-
- >
- )
-}
diff --git a/components/sections/home1/About.js b/components/sections/home1/About.js
deleted file mode 100644
index 4739087..0000000
--- a/components/sections/home1/About.js
+++ /dev/null
@@ -1,58 +0,0 @@
-import Link from 'next/link';
-import React from 'react';
-
-export default function about() {
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
Wade Warren
- Medical Assistant
-
-
-
-
-
-
-
-
- About Us
-
Medical services & diagnostics
-
-
-
Committed To Delivering High Quality Medical & Diagnostics Services!
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.
-
- Ambulance Services
- Oxizen on Wheel
- Pharmacy on Clinic
- On duty Doctors
- 24/7 Medical Emergency
-
-
-
- Discover More
-
-
-
-
-
-
-
- );
-};
diff --git a/components/sections/home1/Banner.js b/components/sections/home1/Banner.js
deleted file mode 100644
index 9e864d5..0000000
--- a/components/sections/home1/Banner.js
+++ /dev/null
@@ -1,35 +0,0 @@
-import React from 'react';
-import Link from "next/link"
-export default function Banner() {
- return (
-
-
-
-
-
-
-
-
Highest level of service you can find
-
Take Care of Your Health Now.
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit.
-
- Explore Our Service
-
-
-
-
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/home1/Features.js b/components/sections/home1/Features.js
deleted file mode 100644
index fa09365..0000000
--- a/components/sections/home1/Features.js
+++ /dev/null
@@ -1,50 +0,0 @@
-import Link from 'next/link';
-import React from 'react';
-
-export default function feature() {
- return (
-
-
-
-
-
-
-
-
-
Qualified Doctor
-
Lorem ipsum dolor sit amet ctetur adipiscing
-
-
-
-
-
-
-
-
Emergency Help
-
Lorem ipsum dolor sit amet ctetur adipiscing
-
-
-
-
-
-
-
-
Modern Equipment
-
Lorem ipsum dolor sit amet ctetur adipiscing
-
-
-
-
-
-
-
-
Family Medicine
-
Lorem ipsum dolor sit amet ctetur adipiscing
-
-
-
-
-
-
- );
-};
diff --git a/components/sections/home1/Funfacts.js b/components/sections/home1/Funfacts.js
deleted file mode 100644
index 2dbbfa6..0000000
--- a/components/sections/home1/Funfacts.js
+++ /dev/null
@@ -1,61 +0,0 @@
-import CounterUp from "@/components/elements/CounterUp"
-
-
-export default function Funfacts() {
- return (
- <>
-
-
-
-
-
-
-
-
-
- +
-
-
Expert Doctors
-
-
-
-
-
-
-
-
- k
-
-
Happy Patients
-
-
-
-
-
-
-
-
-
- >
- )
-}
diff --git a/components/sections/home1/Pricing.js b/components/sections/home1/Pricing.js
deleted file mode 100644
index 2177981..0000000
--- a/components/sections/home1/Pricing.js
+++ /dev/null
@@ -1,92 +0,0 @@
-import React from 'react';
-import Link from "next/link"
-export default function Pricing() {
- return (
-
-
-
- Our Pricing
-
Affordable care options for all patients
-
-
-
-
-
-
-
-
Standard Consultation
- $49.99
- Monthly
-
-
-
- Virtual visit
- Up to 30 minutes
- Securely conducted online
- Discuss and receive guidance
- Rate varies on specific needs
- Healthcare provider Consult
-
-
-
- Choose Plan
-
-
-
-
-
-
-
-
-
-
Annual Physical
- $149.99
- Monthly
-
-
-
- In-person examination
- Up to 60 minutes
- Various tests and assessments
- In-person service
- Rate varies on specific needs
- Healthcare provider Consult
-
-
-
- Choose Plan
-
-
-
-
-
-
-
-
-
-
Extended Consultation
- $99.99
- Monthly
-
-
-
- Virtual visit
- Up to 60 minutes
- Discuss more details
- Receive in-depth guidance
- Rate varies on specific needs
- Healthcare provider Consult
-
-
-
- Choose Plan
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/home1/Process.js b/components/sections/home1/Process.js
deleted file mode 100644
index 76d9e98..0000000
--- a/components/sections/home1/Process.js
+++ /dev/null
@@ -1,54 +0,0 @@
-import React from 'react';
-
-export default function Process() {
- return (
-
-
-
-
-
- Process
-
How it Helps You to Keep Healthy
-
-
-
-
-
-
01
-
-
-
Get Appointment
-
Lorem ipsum dolor sit amet, conse ctetur adipiscing elit.
-
-
-
-
-
-
02
-
-
-
Start Check-Up
-
Lorem ipsum dolor sit amet, conse ctetur adipiscing elit.
-
-
-
-
-
-
03
-
-
-
Enjoy Healthy Life
-
Lorem ipsum dolor sit amet, conse ctetur adipiscing elit.
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/home1/Services.js b/components/sections/home1/Services.js
deleted file mode 100644
index 871b3a1..0000000
--- a/components/sections/home1/Services.js
+++ /dev/null
@@ -1,59 +0,0 @@
-import Link from 'next/link';
-import React from 'react';
-
-export default function service() {
- return (
-
-
-
- Our Services
-
We Offer For You Medical & Saving Lives
-
-
-
-
-
-
-
-
-
-
-
Neurosurgery
-
Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
-
-
-
-
-
Modern Laboratory
-
Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
-
-
-
-
-
Experienced Doctors
-
Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.
-
-
-
-
-
-
-
- );
-};
diff --git a/components/sections/home1/Subscribe.js b/components/sections/home1/Subscribe.js
deleted file mode 100644
index b98e407..0000000
--- a/components/sections/home1/Subscribe.js
+++ /dev/null
@@ -1,35 +0,0 @@
-import React from 'react';
-import Link from "next/link"
-export default function subscribe() {
- return (
-
-
-
-
-
-
-
Subscribe for the exclusive updates!
-
-
-
-
-
-
-
- );
-};
diff --git a/components/sections/home1/Team.js b/components/sections/home1/Team.js
deleted file mode 100644
index cd6d1e4..0000000
--- a/components/sections/home1/Team.js
+++ /dev/null
@@ -1,54 +0,0 @@
-import React from 'react';
-import Link from "next/link"
-export default function Team() {
- const teamMembers = [
- { name: 'Black Marvin', role: 'Medical Assistant', image: 'assets/images/team/team-1.jpg' },
- { name: 'Eleanor Pena', role: 'Doctor', image: 'assets/images/team/team-2.jpg' },
- { name: 'Arlene Maccy', role: 'Nursing Assistant', image: 'assets/images/team/team-3.jpg' },
- { name: 'Jenny Wilson', role: 'Senior Doctor', image: 'assets/images/team/team-4.jpg' },
- ];
-
- return (
-
-
-
-
-
- Our Team
-
Meet our experienced doctors for the best treatment
-
-
- {teamMembers.map((member, index) => (
-
-
-
-
-
-
-
-
-
{member.name}
- {member.role}
-
-
-
-
- ))}
-
-
-
- );
-};
-
diff --git a/components/sections/home1/WhyChooseUs.js b/components/sections/home1/WhyChooseUs.js
deleted file mode 100644
index 44e78d0..0000000
--- a/components/sections/home1/WhyChooseUs.js
+++ /dev/null
@@ -1,61 +0,0 @@
-import Link from 'next/link';
-import React from 'react';
-
-export default function chooseus() {
- return (
-
-
-
-
-
-
-
-
- Why Choose Us
-
Choose The Best For Your Health
-
-
-
-
-
-
-
Professional Staff
-
Amet minim mollit non deserunt aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
Emergency Case
-
Amet minim mollit non deserunt aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
Online Appointment
-
Amet minim mollit non deserunt aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
24/7 Services
-
Amet minim mollit non deserunt aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
-
- );
-};
diff --git a/components/sections/home2/About.js b/components/sections/home2/About.js
deleted file mode 100644
index ba16589..0000000
--- a/components/sections/home2/About.js
+++ /dev/null
@@ -1,60 +0,0 @@
-import React from 'react';
-
-export default function About() {
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Wade Warren
- Medical Assistant
-
-
-
-
-
-
-
-
- About Us
-
Medical services & diagnostics
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.
-
- Refresing to get such a personal touch.
- Duis aute irure dolor in reprehenrit in voluptate.
- Velit esse cillum dolore eu fugiat nua pariatur.
-
-
-
-
-
-
32 Years
-
Of Medical Experience
-
-
-
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/home2/Chooseus.js b/components/sections/home2/Chooseus.js
deleted file mode 100644
index a302be9..0000000
--- a/components/sections/home2/Chooseus.js
+++ /dev/null
@@ -1,61 +0,0 @@
-import Link from 'next/link';
-import React from 'react';
-
-export default function Chooseus() {
- return (
-
-
-
-
-
-
-
-
- Why Choose Us
-
Choose The Best For Your Health
-
-
-
-
-
-
-
Professional Staff
-
Amet minim mollit non deserunt aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
Emergency Case
-
Amet minim mollit non deserunt aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
Online Appointment
-
Amet minim mollit non deserunt aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
24/7 Services
-
Amet minim mollit non deserunt aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
-
- );
-};
diff --git a/components/sections/home2/Client.js b/components/sections/home2/Client.js
deleted file mode 100644
index 70a060f..0000000
--- a/components/sections/home2/Client.js
+++ /dev/null
@@ -1,18 +0,0 @@
-
-import ClientSlider1 from '@/components/slider/ClientSlider1'
-
-import React from 'react';
-
-export default function client() {
- return (
-
-
-
-
- {/*Theme Carousel*/}
-
-
-
-
- );
-};
diff --git a/components/sections/home2/Contact.js b/components/sections/home2/Contact.js
deleted file mode 100644
index 0898b0f..0000000
--- a/components/sections/home2/Contact.js
+++ /dev/null
@@ -1,45 +0,0 @@
-import React from 'react';
-
-export default function Contact() {
- return (
-
-
-
-
-
-
-
- Contact
-
Don't Hesitate to Contact Us
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/home2/Cta.js b/components/sections/home2/Cta.js
deleted file mode 100644
index 6dd869f..0000000
--- a/components/sections/home2/Cta.js
+++ /dev/null
@@ -1,29 +0,0 @@
-import React from 'react';
-import Link from "next/link"
-
-export default function Cta() {
- return (
-
-
-
-
-
-
-
-
-
Need a Doctor for Check-up?
-
Call for an emergency service when you have a need!
-
- Make an Appointment
-
-
-
-
-
- )
-};
-
diff --git a/components/sections/home2/Faq.js b/components/sections/home2/Faq.js
deleted file mode 100644
index c24c1dc..0000000
--- a/components/sections/home2/Faq.js
+++ /dev/null
@@ -1,100 +0,0 @@
-'use client'
-import Layout from "@/components/layout/Layout"
-import Link from "next/link"
-import { useState } from 'react'
-export default function faq() {
- const [isActive, setIsActive] = useState({
- status: false,
- key: 1,
- })
-
- const handleToggle = (key) => {
- if (isActive.key === key) {
- setIsActive({
- status: false,
- })
- } else {
- setIsActive({
- status: true,
- key,
- })
- }
- }
- return (
-
-
-
-
- Faq's
-
Do You Have Any Medical Questions?
-
-
-
-
-
-
-
- handleToggle(1)}>
-
-
Is it possible to get my results by mail or over the phone?
-
-
-
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eu turpis molestie dictum est a, mattis tellus. Sed dignissim, metus nec fringilla accumsan, risus sem sollicitudin lacus.
-
-
-
-
-
- handleToggle(2)}>
-
-
Can I call directly to make an appointment?
-
-
-
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eu turpis molestie dictum est a, mattis tellus. Sed dignissim, metus nec fringilla accumsan, risus sem sollicitudin lacus.
-
-
-
-
-
- handleToggle(3)}>
-
-
Do you give phone advice?
-
-
-
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eu turpis molestie dictum est a, mattis tellus. Sed dignissim, metus nec fringilla accumsan, risus sem sollicitudin lacus.
-
-
-
-
-
- handleToggle(4)}>
-
-
Can I make appointments by phone?
-
-
-
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eu turpis molestie dictum est a, mattis tellus. Sed dignissim, metus nec fringilla accumsan, risus sem sollicitudin lacus.
-
-
-
-
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/home2/Funfacts.js b/components/sections/home2/Funfacts.js
deleted file mode 100644
index 811350e..0000000
--- a/components/sections/home2/Funfacts.js
+++ /dev/null
@@ -1,61 +0,0 @@
-import CounterUp from "@/components/elements/CounterUp"
-
-
-export default function Funfacts() {
- return (
- <>
-
-
-
-
-
-
-
-
-
- +
-
-
Expert Doctors
-
-
-
-
-
-
-
-
- k
-
-
Happy Patients
-
-
-
-
-
-
-
-
-
- >
- )
-}
diff --git a/components/sections/home2/News.js b/components/sections/home2/News.js
deleted file mode 100644
index cd619e4..0000000
--- a/components/sections/home2/News.js
+++ /dev/null
@@ -1,129 +0,0 @@
-'use client'
-import Link from "next/link"
-import { Autoplay, Navigation, Pagination } from "swiper/modules"
-import { Swiper, SwiperSlide } from "swiper/react"
-
-const swiperOptions = {
- modules: [Autoplay, Pagination, Navigation],
- slidesPerView: 3,
- // spaceBetween: 30,
- autoplay: {
- delay: 2500,
- disableOnInteraction: false,
- },
- loop: true,
-
- // Navigation
- navigation: {
- nextEl: '.h1n',
- prevEl: '.h1p',
- },
-
- // Pagination
- pagination: {
- el: '.swiper-pagination',
- clickable: true,
- },
-
- breakpoints: {
- 320: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- 575: {
- slidesPerView: 2,
- // spaceBetween: 30,
- },
- 767: {
- slidesPerView: 2,
- // spaceBetween: 30,
- },
- 991: {
- slidesPerView: 2,
- // spaceBetween: 30,
- },
- 1199: {
- slidesPerView: 3,
- // spaceBetween: 30,
- },
- 1350: {
- slidesPerView: 3,
- // spaceBetween: 30,
- },
- }
-}
-
-
-export default function News() {
- return (
- <>
-
-
-
- Our Blog
-
Take a look at our most recent articles
-
-
-
-
-
-
-
-
- Admin
- 12 Jan 2022
- 03 Comt
-
-
How do Inherited Retinal of Diseases Happen?
-
Tincidunt Maur nemi sit Interdum praesento eget morbi lacinia volutpat pellentesque Tincidunt aurna suspit.
-
- Read More
-
-
-
-
-
-
-
-
-
-
-
- Admin
- 11 Jan 2022
- 0 Comt
-
-
Prepare to Speak with Your Eye Specialist.
-
Tincidunt Maur nemi sit Interdum praesento eget morbi lacinia volutpat pellentesque Tincidunt aurna suspit.
-
- Read More
-
-
-
-
-
-
-
-
-
-
-
- Admin
- 11 Jan 2022
- 02 Comt
-
-
How reliece can help you manage diabetes
-
Tincidunt Maur nemi sit Interdum praesento eget morbi lacinia volutpat pellentesque Tincidunt aurna suspit.
-
- Read More
-
-
-
-
-
-
-
-
- >
- )
-}
diff --git a/components/sections/home2/Order.js b/components/sections/home2/Order.js
deleted file mode 100644
index ae15e26..0000000
--- a/components/sections/home2/Order.js
+++ /dev/null
@@ -1,42 +0,0 @@
-import React from 'react';
-
-export default function order() {
- return (
-
-
-
-
-
Order service online
-
- Enter your information to check availability
-
-
-
-
-
-
-
-
-
-
-
- Service type
- Garbage pickup
- Dumpster rental
- Waste collection
- Recycling service
-
-
-
-
-
- Search Now
-
-
-
-
-
-
-
- );
-};
diff --git a/components/sections/home2/Service.js b/components/sections/home2/Service.js
deleted file mode 100644
index a0d0dcd..0000000
--- a/components/sections/home2/Service.js
+++ /dev/null
@@ -1,63 +0,0 @@
-import Link from 'next/link';
-import React from 'react';
-
-export default function Service() {
- return (
-
-
-
-
- Our Services
-
We Offer For You Medical & Saving Lives
-
-
-
-
-
-
-
-
-
-
-
Neurosurgery
-
Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
-
-
-
-
-
Modern Laboratory
-
Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
-
-
-
-
-
Experienced Doctors
-
Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.
-
-
-
-
-
-
-
- );
-};
diff --git a/components/sections/home2/Subscribe.js b/components/sections/home2/Subscribe.js
deleted file mode 100644
index 78fbf38..0000000
--- a/components/sections/home2/Subscribe.js
+++ /dev/null
@@ -1,37 +0,0 @@
-// Components/SubscribeSection.js
-
-import React from 'react';
-import Link from "next/link"
-export default function Subscribe() {
- return (
-
-
-
-
-
-
-
Subscribe for the exclusive updates!
-
-
-
-
-
-
-
- Subscribe Now
-
-
-
-
- I agree to the Privacy Policy.
-
-
-
-
-
-
-
-
-
- );
-};
diff --git a/components/sections/home2/Team.js b/components/sections/home2/Team.js
deleted file mode 100644
index d7e0164..0000000
--- a/components/sections/home2/Team.js
+++ /dev/null
@@ -1,86 +0,0 @@
-import React from 'react';
-import Link from "next/link"
-const TeamMember = ({ name, designation, imageSrc, socialLinks }) => (
-
-
-
-
-
-
-
-
{name}
-
{designation}
-
- {socialLinks.map((link, index) => (
-
- ))}
-
-
-
-
-
-);
-
-export default function TeamTwo() {
-
-
-
-
- Our Team
-
Meet our experienced doctors for the best treatment
-
-
-
-
-
-
-
-
- {/* ... (Other existing code remains unchanged) */}
-
-};
-
diff --git a/components/sections/home2/Testmonial.js b/components/sections/home2/Testmonial.js
deleted file mode 100644
index 34185f8..0000000
--- a/components/sections/home2/Testmonial.js
+++ /dev/null
@@ -1,36 +0,0 @@
-import React from 'react';
-import TestimonialSlider1 from '@/components/slider/TestimonialSlider1'
-export default function Testimonial() {
- return (
-
-
-
-
-
-
-
- TESTIMONIALS
-
What Our Client Say About medimart
-
-
- {/*Theme Carousel*/}
-
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/home2/Video.js b/components/sections/home2/Video.js
deleted file mode 100644
index deb399e..0000000
--- a/components/sections/home2/Video.js
+++ /dev/null
@@ -1,33 +0,0 @@
-'use client'
-import React, { useState } from 'react';
-import Link from "next/link"
-import ModalVideo from 'react-modal-video'
-export default function Video() {
- const [isOpen, setOpen] = useState(false)
- return (
- <>
-
-
-
-
-
-
-
-
Online Consultations With Qualified Doctors
-
- Make an Appointment
-
-
-
-
- setOpen(false)} />
- >
- );
-};
-
diff --git a/components/sections/home2/Working.js b/components/sections/home2/Working.js
deleted file mode 100644
index 2a4c9d9..0000000
--- a/components/sections/home2/Working.js
+++ /dev/null
@@ -1,60 +0,0 @@
-import React from 'react';
-
-export default function working() {
- return (
-
-
-
-
- Service Industry
-
A wide range of waste disposal services
-
-
-
-
-
-
-
Waste pickup
-
Amet minim mollit no duis deserunt ulamco.
-
-
-
-
-
-
-
Waste collection
-
Amet minim mollit no duis deserunt ulamco.
-
-
-
-
-
-
-
Proccessing
-
Amet minim mollit no duis deserunt ulamco.
-
-
-
-
-
-
Recycling
-
Amet minim mollit no duis deserunt ulamco.
-
-
-
-
-
- );
-};
diff --git a/components/sections/home3/About.js b/components/sections/home3/About.js
deleted file mode 100644
index 38621ee..0000000
--- a/components/sections/home3/About.js
+++ /dev/null
@@ -1,59 +0,0 @@
-import Link from "next/link"
-
-
-export default function About() {
- return (
- <>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- About Us
-
Medical services & diagnostics
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.
-
- Refreshing to get such a personal touch.
- Duis aute irure dolor in reprehenderit in voluptate.
- Velit esse cillum dolore eu fugiat nulla pariatur.
-
-
-
-
-
-
32 Years
-
Of Medical Experience
-
-
-
-
-
-
-
-
-
-
- >
- )
-}
diff --git a/components/sections/home3/Banner.js b/components/sections/home3/Banner.js
deleted file mode 100644
index 31aac5e..0000000
--- a/components/sections/home3/Banner.js
+++ /dev/null
@@ -1,47 +0,0 @@
-'use client'
-import Link from 'next/link';
-import React, { useState } from 'react';
-import ModalVideo from 'react-modal-video'
-export default function Banner() {
- const [isOpen, setOpen] = useState(false)
- return (
- <>
-
-
-
-
-
-
-
-
Highest level of service you can find
-
Take Care of Your Health Now.
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit.
-
-
-
-
-
-
-
-
-
Dr. Wade Warren
- Senior Medical Assistant
-
-
-
-
-
-
- setOpen(false)} />
- >
- );
-};
-
diff --git a/components/sections/home3/Contact.js b/components/sections/home3/Contact.js
deleted file mode 100644
index bbf6986..0000000
--- a/components/sections/home3/Contact.js
+++ /dev/null
@@ -1,71 +0,0 @@
-import React from 'react';
-import Link from 'next/link';
-export default function Contact() {
- return (
-
-
-
- Contact
-
Don't Hesitate to Contact Us
-
-
-
-
-
-
Quick Contact
-
-
-
Main Office: (+233)456-789-01, +10456-789-01
-
-
-
-
Email Address
-
-
-
Mail: info@example.com
-
-
-
-
Mailing Address
-
-
-
3891 Ranchview Dr. Richardson, California 62639
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Send Message
-
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/home3/Faq.js b/components/sections/home3/Faq.js
deleted file mode 100644
index c5b2bc5..0000000
--- a/components/sections/home3/Faq.js
+++ /dev/null
@@ -1,97 +0,0 @@
-'use client'
-import Layout from "@/components/layout/Layout"
-import Link from "next/link"
-import { useState } from 'react'
-export default function Faq() {
- const [isActive, setIsActive] = useState({
- status: false,
- key: 1,
- })
-
- const handleToggle = (key) => {
- if (isActive.key === key) {
- setIsActive({
- status: false,
- })
- } else {
- setIsActive({
- status: true,
- key,
- })
- }
- }
- return (
-
-
-
-
- Faq's
-
Do You Have Any Medical Questions?
-
-
-
-
-
-
-
- handleToggle(1)}>
-
-
Is it possible to get my results by mail or over the phone?
-
-
-
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eu turpis molestie dictum est a, mattis tellus. Sed dignissim, metus nec fringilla accumsan, risus sem sollicitudin lacus.
-
-
-
-
-
- handleToggle(2)}>
-
-
Can I call directly to make an appointment?
-
-
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eu turpis molestie dictum est a, mattis tellus. Sed dignissim, metus nec fringilla accumsan, risus sem sollicitudin lacus.
-
-
-
-
-
- handleToggle(3)}>
-
-
Do you give phone advice?
-
-
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eu turpis molestie dictum est a, mattis tellus. Sed dignissim, metus nec fringilla accumsan, risus sem sollicitudin lacus.
-
-
-
-
-
- handleToggle(3)}>
-
-
Can I make appointments by phone?
-
-
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eu turpis molestie dictum est a, mattis tellus. Sed dignissim, metus nec fringilla accumsan, risus sem sollicitudin lacus.
-
-
-
-
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/home3/Features.js b/components/sections/home3/Features.js
deleted file mode 100644
index 01eacd2..0000000
--- a/components/sections/home3/Features.js
+++ /dev/null
@@ -1,51 +0,0 @@
-import Link from "next/link"
-
-
-export default function Features() {
- return (
- <>
-
-
-
-
-
-
-
-
Qualified Doctor
-
Lorem ipsum dolor sit amet ctetur adipiscing
-
-
-
-
-
-
-
-
Emergency Help
-
Lorem ipsum dolor sit amet ctetur adipiscing
-
-
-
-
-
-
-
-
Modern Equipment
-
Lorem ipsum dolor sit amet ctetur adipiscing
-
-
-
-
-
-
-
-
Family Medicine
-
Lorem ipsum dolor sit amet ctetur adipiscing
-
-
-
-
-
-
- >
- )
-}
diff --git a/components/sections/home3/Gallery.js b/components/sections/home3/Gallery.js
deleted file mode 100644
index 83a8e77..0000000
--- a/components/sections/home3/Gallery.js
+++ /dev/null
@@ -1,30 +0,0 @@
-// import PortfolioFilter1 from ""
-import dynamic from 'next/dynamic'
-const PortfolioFilter1 = dynamic(() => import('@/components/elements/PortfolioFilter1'), {
- ssr: false,
-})
-
-import Link from "next/link"
-export default function Gallery() {
-
- return (
- <>
-
-
-
-
- Gallery
-
Visit Our Gallery For Latest Info
-
- {/*Sortable Galery*/}
-
-
-
-
-
- >
- )
-}
\ No newline at end of file
diff --git a/components/sections/home3/Map.js b/components/sections/home3/Map.js
deleted file mode 100644
index cdf8d14..0000000
--- a/components/sections/home3/Map.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from 'react';
-
-export default function Map() {
-
-
- return (
-
- );
-};
-
diff --git a/components/sections/home3/News.js b/components/sections/home3/News.js
deleted file mode 100644
index 9027fe1..0000000
--- a/components/sections/home3/News.js
+++ /dev/null
@@ -1,74 +0,0 @@
-import Link from 'next/link';
-import React from 'react';
-
-export default function news() {
- return (
-
-
-
- Our Blog
-
Take a look at our most recent articles
-
-
-
-
-
-
-
-
- Admin
- 12 Jan 2022
- 03 Comt
-
-
How do Inherited Retinal of Diseases Happen?
-
Tincidunt Maur nemi sit Interdum praesento eget morbi lacinia volutpat pellentesque Tincidunt aurna suspit.
-
- Read More
-
-
-
-
-
-
-
-
-
-
-
- Admin
- 11 Jan 2022
- 0 Comt
-
-
Prepare to Speak with Your Eye Specialist.
-
Tincidunt Maur nemi sit Interdum praesento eget morbi lacinia volutpat pellentesque Tincidunt aurna suspit.
-
- Read More
-
-
-
-
-
-
-
-
-
-
-
- Admin
- 11 Jan 2022
- 02 Comt
-
-
How reliece can help you manage diabetes
-
Tincidunt Maur nemi sit Interdum praesento eget morbi lacinia volutpat pellentesque Tincidunt aurna suspit.
-
- Read More
-
-
-
-
-
-
-
-
- );
-};
diff --git a/components/sections/home3/Process.js b/components/sections/home3/Process.js
deleted file mode 100644
index f36bde3..0000000
--- a/components/sections/home3/Process.js
+++ /dev/null
@@ -1,54 +0,0 @@
-import React from 'react';
-
-export default function Process() {
- return (
-
-
-
-
-
- Process
-
How it Helps You to Keep Healthy
-
-
-
-
-
-
01
-
-
-
Get Appointment
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-
-
-
-
-
-
02
-
-
-
Start Check-Up
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-
-
-
-
-
-
03
-
-
-
Enjoy Healthy Life
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/home3/Subscribe.js b/components/sections/home3/Subscribe.js
deleted file mode 100644
index 74d8f9f..0000000
--- a/components/sections/home3/Subscribe.js
+++ /dev/null
@@ -1,36 +0,0 @@
-import React from 'react';
-import Link from 'next/link';
-export default function Subscribe() {
- return (
-
-
-
-
-
-
-
Subscribe for the exclusive updates!
-
-
-
-
-
-
-
- Subscribe Now
-
-
-
-
- I agree to the Privacy Policy.
-
-
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/home3/Team.js b/components/sections/home3/Team.js
deleted file mode 100644
index ec3ed19..0000000
--- a/components/sections/home3/Team.js
+++ /dev/null
@@ -1,102 +0,0 @@
-import Link from "next/link"
-
-
-export default function Team() {
- return (
- <>
-
-
-
-
-
- Our Team
-
Meet our experienced doctors for the best treatment
-
-
-
-
-
-
-
-
-
-
-
Black Marvin
- Medical Assistant
-
-
-
-
-
-
-
-
-
-
-
-
-
Eleanor Pena
- Doctor
-
-
-
-
-
-
-
-
-
-
-
-
-
Arlene Maccy
- Nursing Assistant
-
-
-
-
-
-
-
-
-
-
-
-
-
Jenny Wilson
- Senior Doctor
-
-
-
-
-
-
-
-
- >
- )
-}
diff --git a/components/sections/home3/Testmonial.js b/components/sections/home3/Testmonial.js
deleted file mode 100644
index 34185f8..0000000
--- a/components/sections/home3/Testmonial.js
+++ /dev/null
@@ -1,36 +0,0 @@
-import React from 'react';
-import TestimonialSlider1 from '@/components/slider/TestimonialSlider1'
-export default function Testimonial() {
- return (
-
-
-
-
-
-
-
- TESTIMONIALS
-
What Our Client Say About medimart
-
-
- {/*Theme Carousel*/}
-
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/home3/Video.js b/components/sections/home3/Video.js
deleted file mode 100644
index b8ae409..0000000
--- a/components/sections/home3/Video.js
+++ /dev/null
@@ -1,34 +0,0 @@
-'use client'
-import Link from 'next/link';
-import React, { useState } from 'react';
-
-import ModalVideo from 'react-modal-video'
-export default function Video() {
- const [isOpen, setOpen] = useState(false)
- return (
- <>
-
-
-
-
-
-
-
-
Online Consultations With Qualified Doctors
-
- Make an Appointment
-
-
-
-
- setOpen(false)} />
- >
- );
-};
-
diff --git a/components/sections/onepage/About.js b/components/sections/onepage/About.js
deleted file mode 100644
index 4f47f01..0000000
--- a/components/sections/onepage/About.js
+++ /dev/null
@@ -1,58 +0,0 @@
-import Link from 'next/link';
-import React from 'react';
-
-export default function about() {
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
Wade Warren
- Medical Assistant
-
-
-
-
-
-
-
-
- About Us
-
Medical services & diagnostics
-
-
-
Committed To Delivering High Quality Medical & Diagnostics Services!
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.
-
- Ambulance Services
- Oxygen on Wheel
- Pharmacy on Clinic
- On-duty Doctors
- 24/7 Medical Emergency
-
-
-
- Discover More
-
-
-
-
-
-
-
- );
-};
diff --git a/components/sections/onepage/Banner.js b/components/sections/onepage/Banner.js
deleted file mode 100644
index ebd29df..0000000
--- a/components/sections/onepage/Banner.js
+++ /dev/null
@@ -1,35 +0,0 @@
-import React from 'react';
-import Link from 'next/link';
-export default function Banner() {
- return (
-
-
-
-
-
-
-
-
Highest level of service you can find
-
Take Care of Your Health Now.
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit.
-
- Explore Our Service
-
-
-
-
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/onepage/Features.js b/components/sections/onepage/Features.js
deleted file mode 100644
index 333ad47..0000000
--- a/components/sections/onepage/Features.js
+++ /dev/null
@@ -1,50 +0,0 @@
-import Link from 'next/link';
-import React from 'react';
-
-export default function Feature() {
- return (
-
-
-
-
-
-
-
-
-
Qualified Doctor
-
Lorem ipsum dolor sit amet ctetur adipiscing
-
-
-
-
-
-
-
-
Emergency Help
-
Lorem ipsum dolor sit amet ctetur adipiscing
-
-
-
-
-
-
-
-
Modern Equipment
-
Lorem ipsum dolor sit amet ctetur adipiscing
-
-
-
-
-
-
-
-
Family Medicine
-
Lorem ipsum dolor sit amet ctetur adipiscing
-
-
-
-
-
-
- );
-};
diff --git a/components/sections/onepage/Funfacts.js b/components/sections/onepage/Funfacts.js
deleted file mode 100644
index 6853132..0000000
--- a/components/sections/onepage/Funfacts.js
+++ /dev/null
@@ -1,61 +0,0 @@
-import CounterUp from "@/components/elements/CounterUp"
-
-
-export default function Funfacts() {
- return (
- <>
-
-
-
-
-
-
-
-
-
- +
-
-
Expert Doctors
-
-
-
-
-
-
-
-
- k
-
-
Happy Patients
-
-
-
-
-
-
-
-
-
- >
- )
-}
diff --git a/components/sections/onepage/News.js b/components/sections/onepage/News.js
deleted file mode 100644
index 095bcd9..0000000
--- a/components/sections/onepage/News.js
+++ /dev/null
@@ -1,129 +0,0 @@
-'use client'
-import Link from "next/link"
-import { Autoplay, Navigation, Pagination } from "swiper/modules"
-
-
-const swiperOptions = {
- modules: [Autoplay, Pagination, Navigation],
- slidesPerView: 3,
- // spaceBetween: 30,
- autoplay: {
- delay: 2500,
- disableOnInteraction: false,
- },
- loop: true,
-
- // Navigation
- navigation: {
- nextEl: '.h1n',
- prevEl: '.h1p',
- },
-
- // Pagination
- pagination: {
- el: '.swiper-pagination',
- clickable: true,
- },
-
- breakpoints: {
- 320: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- 575: {
- slidesPerView: 2,
- // spaceBetween: 30,
- },
- 767: {
- slidesPerView: 2,
- // spaceBetween: 30,
- },
- 991: {
- slidesPerView: 2,
- // spaceBetween: 30,
- },
- 1199: {
- slidesPerView: 3,
- // spaceBetween: 30,
- },
- 1350: {
- slidesPerView: 3,
- // spaceBetween: 30,
- },
- }
-}
-
-
-export default function News() {
- return (
- <>
-
-
-
- Our Blog
-
Take a look at our most recent articles
-
-
-
-
-
-
-
-
- Admin
- 12 Jan 2022
- 03 Comt
-
-
How do Inherited Retinal of Diseases Happen?
-
Tincidunt Maur nemi sit Interdum praesento eget morbi lacinia volutpat pellentesque Tincidunt aurna suspit.
-
- Read More
-
-
-
-
-
-
-
-
-
-
-
- Admin
- 11 Jan 2022
- 0 Comt
-
-
Prepare to Speak with Your Eye Specialist.
-
Tincidunt Maur nemi sit Interdum praesento eget morbi lacinia volutpat pellentesque Tincidunt aurna suspit.
-
- Read More
-
-
-
-
-
-
-
-
-
-
-
- Admin
- 11 Jan 2022
- 02 Comt
-
-
How reliece can help you manage diabetes
-
Tincidunt Maur nemi sit Interdum praesento eget morbi lacinia volutpat pellentesque Tincidunt aurna suspit.
-
- Read More
-
-
-
-
-
-
-
-
- >
- )
-}
diff --git a/components/sections/onepage/Pricing.js b/components/sections/onepage/Pricing.js
deleted file mode 100644
index b81a12d..0000000
--- a/components/sections/onepage/Pricing.js
+++ /dev/null
@@ -1,92 +0,0 @@
-import React from 'react';
-import Link from 'next/link';
-export default function Pricing() {
- return (
-
-
-
- Our Pricing
-
Affordable care options for all patients
-
-
-
-
-
-
-
-
Standard Consultation
- $49.99
- Monthly
-
-
-
- Virtual visit
- Up to 30 minutes
- Securely conducted online
- Discuss and receive guidance
- Rate varies on specific needs
- Healthcare provider Consult
-
-
-
- Choose Plan
-
-
-
-
-
-
-
-
-
-
Annual Physical
- $149.99
- Monthly
-
-
-
- In-person examination
- Up to 60 minutes
- Various tests and assessments
- In-person service
- Rate varies on specific needs
- Healthcare provider Consult
-
-
-
- Choose Plan
-
-
-
-
-
-
-
-
-
-
Extended Consultation
- $99.99
- Monthly
-
-
-
- Virtual visit
- Up to 60 minutes
- Discuss more details
- Receive in-depth guidance
- Rate varies on specific needs
- Healthcare provider Consult
-
-
-
- Choose Plan
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/onepage/Process.js b/components/sections/onepage/Process.js
deleted file mode 100644
index 9a63bad..0000000
--- a/components/sections/onepage/Process.js
+++ /dev/null
@@ -1,54 +0,0 @@
-import React from 'react';
-
-export default function Process() {
- return (
-
-
-
-
-
- Process
-
How it Helps You to Keep Healthy
-
-
-
-
-
-
01
-
-
-
Get Appointment
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-
-
-
-
-
-
02
-
-
-
Start Check-Up
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-
-
-
-
-
-
03
-
-
-
Enjoy Healthy Life
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/onepage/Services.js b/components/sections/onepage/Services.js
deleted file mode 100644
index d4e59bb..0000000
--- a/components/sections/onepage/Services.js
+++ /dev/null
@@ -1,60 +0,0 @@
-import Link from 'next/link';
-import React from 'react';
-
-export default function Service() {
- return (
-
-
-
- Our Services
-
We Offer For You Medical & Saving Lives
-
-
-
-
-
-
-
-
-
-
-
Neurosurgery
-
Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
-
-
-
-
-
Modern Laboratory
-
Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
-
-
-
-
-
Experienced Doctors
-
Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/onepage/Subscribe.js b/components/sections/onepage/Subscribe.js
deleted file mode 100644
index 74d8f9f..0000000
--- a/components/sections/onepage/Subscribe.js
+++ /dev/null
@@ -1,36 +0,0 @@
-import React from 'react';
-import Link from 'next/link';
-export default function Subscribe() {
- return (
-
-
-
-
-
-
-
Subscribe for the exclusive updates!
-
-
-
-
-
-
-
- Subscribe Now
-
-
-
-
- I agree to the Privacy Policy.
-
-
-
-
-
-
-
-
-
- );
-};
-
diff --git a/components/sections/onepage/Team.js b/components/sections/onepage/Team.js
deleted file mode 100644
index 130b55d..0000000
--- a/components/sections/onepage/Team.js
+++ /dev/null
@@ -1,93 +0,0 @@
-import React from 'react';
-import Link from 'next/link';
-export default function Team() {
- const teamMembers = [
- {
- name: 'Black Marvin',
- role: 'Medical Assistant',
- image: 'assets/images/team/team-1.jpg',
- socialLinks: [
- { icon: 'icon-4', link: '/' },
- { icon: 'icon-5', link: '/' },
- { icon: 'icon-6', link: '/' },
- { icon: 'icon-7', link: '/' },
- ],
- },
- {
- name: 'Eleanor Pena',
- role: 'Doctor',
- image: 'assets/images/team/team-2.jpg',
- socialLinks: [
- { icon: 'icon-4', link: '/' },
- { icon: 'icon-5', link: '/' },
- { icon: 'icon-6', link: '/' },
- { icon: 'icon-7', link: '/' },
- ],
- },
- {
- name: 'Arlene Maccy',
- role: 'Nursing Assistant',
- image: 'assets/images/team/team-3.jpg',
- socialLinks: [
- { icon: 'icon-4', link: '/' },
- { icon: 'icon-5', link: '/' },
- { icon: 'icon-6', link: '/' },
- { icon: 'icon-7', link: '/' },
- ],
- },
- {
- name: 'Jenny Wilson',
- role: 'Senior Doctor',
- image: 'assets/images/team/team-4.jpg',
- socialLinks: [
- { icon: 'icon-4', link: '/' },
- { icon: 'icon-5', link: '/' },
- { icon: 'icon-6', link: '/' },
- { icon: 'icon-7', link: '/' },
- ],
- },
- ];
-
- return (
-
-
-
-
-
- Our Team
-
Meet our experienced doctors for the best treatment
-
-
- {teamMembers.map((member, index) => (
-
-
-
-
-
-
- {member.socialLinks.map((link, i) => (
-
- ))}
-
-
-
-
{member.name}
- {member.role}
-
-
-
-
- ))}
-
-
-
- );
-};
-
diff --git a/components/sections/onepage/Testimonial.js b/components/sections/onepage/Testimonial.js
deleted file mode 100644
index ed29ec8..0000000
--- a/components/sections/onepage/Testimonial.js
+++ /dev/null
@@ -1,30 +0,0 @@
-import TestimonialSlider1 from '@/components/slider/TestimonialSlider1'
-
-export default function Testimonial() {
- return (
- <>
-
-
-
-
-
-
-
-
-
- Testimonials
-
What Our Client Say About medimart
-
-
- {/*Theme Carousel*/}
-
-
-
-
-
-
-
-
- >
- )
-}
diff --git a/components/sections/onepage/Video.js b/components/sections/onepage/Video.js
deleted file mode 100644
index 3e8c8fd..0000000
--- a/components/sections/onepage/Video.js
+++ /dev/null
@@ -1,34 +0,0 @@
-'use client'
-import Link from 'next/link';
-import React, { useState } from 'react';
-
-import ModalVideo from 'react-modal-video'
-export default function Video() {
- const [isOpen, setOpen] = useState(false)
- return (
- <>
-
-
-
-
-
-
-
-
Online Consultations With Qualified Doctors
-
- Make an Appointment
-
-
-
-
- setOpen(false)} />
- >
- );
-};
-
diff --git a/components/sections/onepage/WhyChooseUs.js b/components/sections/onepage/WhyChooseUs.js
deleted file mode 100644
index 3b7e6ae..0000000
--- a/components/sections/onepage/WhyChooseUs.js
+++ /dev/null
@@ -1,60 +0,0 @@
-
-import React from 'react';
-export default function chooseus() {
- return (
-
-
-
-
-
-
-
-
- Why Choose Us
-
Choose The Best For Your Health
-
-
-
-
-
-
-
Professional Staff
-
Amet minim mollit non deserunt aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
Emergency Case
-
Amet minim mollit non deserunt aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
Online Appointment
-
Amet minim mollit non deserunt aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
24/7 Services
-
Amet minim mollit non deserunt aliqua dolor do amet sint.
-
-
-
-
-
-
-
-
-
- );
-};
diff --git a/components/slider/ClientSlider1.js b/components/slider/ClientSlider1.js
deleted file mode 100644
index 3bde0c6..0000000
--- a/components/slider/ClientSlider1.js
+++ /dev/null
@@ -1,125 +0,0 @@
-'use client'
-import Link from "next/link"
-import { Autoplay, Navigation, Pagination } from "swiper/modules"
-import { Swiper, SwiperSlide } from "swiper/react"
-
-const swiperOptions = {
- modules: [Autoplay, Pagination, Navigation],
- slidesPerView: 4,
- spaceBetween: 30,
- autoplay: {
- delay: 2500,
- disableOnInteraction: false,
- },
- loop: true,
-
- // Navigation
- navigation: {
- nextEl: '.h1n',
- prevEl: '.h1p',
- },
-
- // Pagination
- pagination: {
- el: '.swiper-pagination',
- clickable: true,
- },
-
- breakpoints: {
- 320: {
- slidesPerView: 1,
- spaceBetween: 30,
- },
- 575: {
- slidesPerView: 2,
- spaceBetween: 30,
- },
- 767: {
- slidesPerView: 3,
- spaceBetween: 30,
- },
- 991: {
- slidesPerView: 4,
- spaceBetween: 30,
- },
- 1199: {
- slidesPerView: 5,
- spaceBetween: 30,
- },
- 1350: {
- slidesPerView: 5,
- spaceBetween: 30,
- },
- }
-}
-
-export default function ClientSlider1() {
- return (
- <>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- >
- )
-}
diff --git a/components/slider/ProjectSlider0.js b/components/slider/ProjectSlider0.js
deleted file mode 100644
index 6f5d9b2..0000000
--- a/components/slider/ProjectSlider0.js
+++ /dev/null
@@ -1,180 +0,0 @@
-'use client'
-import Link from "next/link"
-import { Autoplay, Navigation, Pagination } from "swiper/modules"
-import { Swiper, SwiperSlide } from "swiper/react"
-
-const swiperOptions = {
- modules: [Autoplay, Pagination, Navigation],
- slidesPerView: 3,
- // spaceBetween: 30,
- autoplay: {
- delay: 2500,
- disableOnInteraction: false,
- },
- loop: true,
-
- // Navigation
-
- // Pagination
- pagination: {
- el: '.swiper-pagination',
- clickable: true,
- },
-
- breakpoints: {
- 320: {
- slidesPerView: 1,
- //spaceBetween: 30,
- },
- 575: {
- slidesPerView: 2,
- spaceBetween: 15,
- },
- 767: {
- slidesPerView: 2,
- spaceBetween: 15,
- },
- 991: {
- slidesPerView: 3,
- spaceBetween: 15,
- },
- 1199: {
- slidesPerView: 3,
- spaceBetween: 15,
- },
- 1350: {
- slidesPerView: 3,
- spaceBetween: 15,
- },
- }
-}
-export default function ProjectSlider0() {
- return (
- <>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Waste Pickup
-
Garbage pickup
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Waste Pickup
-
Grocery waste removal
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Waste Pickup
-
Waste collection
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Waste Pickup
-
Garbage pickup
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Waste Pickup
-
Grocery waste removal
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Waste Pickup
-
Waste collection
-
-
-
-
-
-
-
- >
- )
-}
diff --git a/components/slider/TestmonialSlider2.js b/components/slider/TestmonialSlider2.js
deleted file mode 100644
index 5c85f42..0000000
--- a/components/slider/TestmonialSlider2.js
+++ /dev/null
@@ -1,182 +0,0 @@
-'use client'
-import Link from "next/link"
-import { Autoplay, Navigation, Pagination } from "swiper/modules"
-import { Swiper, SwiperSlide } from "swiper/react"
-
-const swiperOptions = {
- modules: [Autoplay, Pagination, Navigation],
- slidesPerView: 1,
- spaceBetween: 30,
- autoplay: {
- delay: 2500,
- disableOnInteraction: false,
- },
- loop: true,
-
- // Navigation
- navigation: {
- nextEl: '.h1n',
- prevEl: '.h1p',
- },
-
- // Pagination
- pagination: {
- el: '.swiper-pagination',
- clickable: true,
- },
-
- breakpoints: {
- 320: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- 575: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- 767: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- 991: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- 1199: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- 1350: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- }
-}
-export default function TestimonialSlider1() {
- return (
- <>
-
-
-
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.
-
-
-
-
Robert Fox
-
Dog Trainer
-
-
-
-
-
-
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.
-
-
-
-
Robert Fox
-
Dog Trainer
-
-
-
-
-
-
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.
-
-
-
-
Robert Fox
-
Dog Trainer
-
-
-
-
-
-
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.
-
-
-
-
Robert Fox
-
Dog Trainer
-
-
-
-
-
-
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.
-
-
-
-
Robert Fox
-
Dog Trainer
-
-
-
-
-
-
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.
-
-
-
-
Robert Fox
-
Dog Trainer
-
-
-
-
-
- >
- )
-}
diff --git a/components/slider/TestmonialSlider3.js b/components/slider/TestmonialSlider3.js
deleted file mode 100644
index f1d054f..0000000
--- a/components/slider/TestmonialSlider3.js
+++ /dev/null
@@ -1,182 +0,0 @@
-'use client'
-import Link from "next/link"
-import { Autoplay, Navigation, Pagination } from "swiper/modules"
-import { Swiper, SwiperSlide } from "swiper/react"
-
-const swiperOptions = {
- modules: [Autoplay, Pagination, Navigation],
- slidesPerView: 1,
- spaceBetween: 30,
- autoplay: {
- delay: 2500,
- disableOnInteraction: false,
- },
- loop: true,
-
- // Navigation
- navigation: {
- nextEl: '.h1n',
- prevEl: '.h1p',
- },
-
- // Pagination
- pagination: {
- el: '.swiper-pagination',
- clickable: true,
- },
-
- breakpoints: {
- 320: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- 575: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- 767: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- 991: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- 1199: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- 1350: {
- slidesPerView: 1,
- // spaceBetween: 30,
- },
- }
-}
-export default function TestimonialSlider3() {
- return (
- <>
-
-
-
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.
-
-
-
-
Robert Fox
-
Dog Trainer
-
-
-
-
-
-
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.
-
-
-
-
Robert Fox
-
Dog Trainer
-
-
-
-
-
-
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.
-
-
-
-
Robert Fox
-
Dog Trainer
-
-
-
-
-
-
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.
-
-
-
-
Robert Fox
-
Dog Trainer
-
-
-
-
-
-
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.
-
-
-
-
Robert Fox
-
Dog Trainer
-
-
-
-
-
-
-
-
-
Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.
-
-
-
-
Robert Fox
-
Dog Trainer
-
-
-
-
-
- >
- )
-}
diff --git a/public/vercel.svg b/public/vercel.svg
deleted file mode 100644
index d2f8422..0000000
--- a/public/vercel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file