changed footer text and about top text

This commit was merged in pull request #5.
This commit is contained in:
victorAnumudu
2025-01-10 09:33:46 +01:00
parent 8ff4fc0255
commit f1f7a5f8a7
8 changed files with 160 additions and 172 deletions
+2 -4
View File
@@ -64,12 +64,10 @@ export default function Home() {
<span className="flaticon-quote" />
</div>
{/* Text */}
<p>Nullam tempor pretium a gravida donec congue ipsum porta justo integer dolor
odio auctor a neque suscipit an ipsum integer congue purus at pretium turpis
egestas and volute laoreet quaerat
<p>As a healthcare provider, you must stay up-to-date on the latest trends and technologies to connect with your patients and provide them with top-notch care. We offer a variety of products that are specifically designed to help you meet the growing online needs of your practice
</p>
{/* Author */}
<p className="a2-txt-author">Charlie Cheever <span>CEO &amp; CO-FOUNDER</span></p>
{/* <p className="a2-txt-author">Charlie Cheever <span>CEO &amp; CO-FOUNDER</span></p> */}
</div>
</div>
{/* IMAGE-4 */}
+2 -2
View File
@@ -3,15 +3,15 @@ import { useQuery } from "@tanstack/react-query";
import VideoPopup from "../components/elements/VidepPopup"
import Layout from "../components/layout/Layout"
import Link from "next/link"
import queryKeys from "../components/queryclientProvider/queryKeys";
export default function Home() {
const {data, isFetching, isError, error} = useQuery({
queryKey: ['blog'],
queryKey: queryKeys.blog,
queryFn: async () => {
try {
const blog_url = 'https://blogdata.chiefsoft.net/mermsblogdata/mermsemr';
//http://localhost:8805/mermsblogdata/mermsemr'; // https://blogdata.chiefsoft.net/mermsblogdata/mermsemr
const res = await fetch(blog_url)
const data = await res.json()
return data