From efb92d0833957d4e5d046bae7a38b3bc64e0ca41 Mon Sep 17 00:00:00 2001 From: Val <44112412+LawfaL@users.noreply.github.com> Date: Tue, 4 Mar 2025 17:32:01 +0700 Subject: [PATCH 1/6] feat: explore more --- public/assets/css/style.css | 2 +- src/components/Blogs/Blog.tsx | 20 ++++---------------- src/components/Blogs/BlogDetail.tsx | 5 +++++ 3 files changed, 10 insertions(+), 17 deletions(-) diff --git a/public/assets/css/style.css b/public/assets/css/style.css index b3a16c0..da6ac85 100644 --- a/public/assets/css/style.css +++ b/public/assets/css/style.css @@ -3909,7 +3909,7 @@ a.logo:hover { } .body-scrolled .social-nav { - color: var(--color-dark-3); + color: #00898b; } /* Menu sub */ diff --git a/src/components/Blogs/Blog.tsx b/src/components/Blogs/Blog.tsx index 809e60f..ff63cea 100644 --- a/src/components/Blogs/Blog.tsx +++ b/src/components/Blogs/Blog.tsx @@ -15,24 +15,12 @@ export default async function Blog() {

Our Blog

-

Check the latest news about our company in our blog.

-

- There are three kinds of web developer specialization front-end developer, back-end developer, and - full-stack developer. +

Knowledge and Support for Your Cancer Journey

+

+ Cancer treatment involves a team of specialists providing personalized, comprehensive care. Staying + informed and engaged empowers you to choose the best approach. Remember, you’re not alone in this journey.

-
-
- - - Our blog - - - -
-
{/* Blog Posts Grid */}
diff --git a/src/components/Blogs/BlogDetail.tsx b/src/components/Blogs/BlogDetail.tsx index 2b4c825..bf05b87 100644 --- a/src/components/Blogs/BlogDetail.tsx +++ b/src/components/Blogs/BlogDetail.tsx @@ -4,6 +4,7 @@ import { RichText } from "@payloadcms/richtext-lexical/react"; import { headers } from "next/headers"; import Image from "next/image"; import { notFound } from "next/navigation"; +import Blog from "./Blog"; export interface BlogDetailProps { slug: string | undefined; @@ -48,10 +49,14 @@ export default async function BlogDetail({ slug }: BlogDetailProps) { {/* End Post */}
{/* End Content */} +
{/* End Section */} +
+ +
); } From 01436f46b6b53b684cfba4708618863d2d4280c1 Mon Sep 17 00:00:00 2001 From: Val <44112412+LawfaL@users.noreply.github.com> Date: Tue, 4 Mar 2025 17:54:21 +0700 Subject: [PATCH 2/6] fix: social media hover --- public/assets/css/style.css | 4 ++ src/app/(main)/layout.tsx | 4 +- src/components/Header.tsx | 100 ++++++++++++++++++----------------- src/components/HeaderNav.tsx | 6 +-- 4 files changed, 59 insertions(+), 55 deletions(-) diff --git a/public/assets/css/style.css b/public/assets/css/style.css index da6ac85..b0b28e8 100644 --- a/public/assets/css/style.css +++ b/public/assets/css/style.css @@ -3912,6 +3912,10 @@ a.logo:hover { color: #00898b; } +.social-nav:hover { + color: #00abad; +} + /* Menu sub */ .inner-nav .mi-chevron-down { diff --git a/src/app/(main)/layout.tsx b/src/app/(main)/layout.tsx index 6521bf7..01a8889 100644 --- a/src/app/(main)/layout.tsx +++ b/src/app/(main)/layout.tsx @@ -26,9 +26,7 @@ export default function MainLayout({
- +
{children}
diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 8b0c041..6f11cba 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -14,57 +14,59 @@ const shareIcons: Record = { export default function Header({ links }: { links: typeof navMenuData }) { return ( -
- {/* Logo (* Add your text or image to the link tag. Use SVG or PNG image format. + ); } diff --git a/src/components/HeaderNav.tsx b/src/components/HeaderNav.tsx index 132d4a8..b29626a 100644 --- a/src/components/HeaderNav.tsx +++ b/src/components/HeaderNav.tsx @@ -56,7 +56,7 @@ export default function HeaderNav({ links, animateY = false }: { links: typeof n {Array.isArray(link?.child) && ( <> - + {link.text} toggleDropdown([link.text])} /> @@ -70,8 +70,8 @@ export default function HeaderNav({ links, animateY = false }: { links: typeof n )} {Array.isArray(subLink?.child) && ( <> - - {subLink.text} + + {subLink.text} toggleDropdown([link.text, subLink.text])} /> From 6e231f54855fb3a361ad599a31344c0d96bd9a13 Mon Sep 17 00:00:00 2001 From: Val <44112412+LawfaL@users.noreply.github.com> Date: Tue, 4 Mar 2025 18:59:25 +0700 Subject: [PATCH 3/6] fix: header --- src/components/Header.tsx | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 6f11cba..ff189c4 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -5,16 +5,21 @@ import { navMenuData } from "@/data/menu"; import { toggleMobileMenu } from "@/utils/toggleMobileMenu"; import Image from "next/image"; import Link from "next/link"; -import { FaFacebook, FaLinkedin, FaTwitter } from "react-icons/fa"; +import { FaFacebook, FaLinkedin, FaPhone } from "react-icons/fa"; const shareIcons: Record = { + phone: ( + + + (520) 803-6644 + + ), facebook: , linkedin: , - twitter: , }; export default function Header({ links }: { links: typeof navMenuData }) { return ( -
From 62bfec7c87d7f3fc653e57c777bfc24f0d3a6966 Mon Sep 17 00:00:00 2001 From: Val <44112412+LawfaL@users.noreply.github.com> Date: Tue, 4 Mar 2025 19:21:58 +0700 Subject: [PATCH 4/6] feat: blockquote --- src/components/Homepage.tsx | 56 ++++++++++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/src/components/Homepage.tsx b/src/components/Homepage.tsx index c344f7c..191ea9c 100644 --- a/src/components/Homepage.tsx +++ b/src/components/Homepage.tsx @@ -57,7 +57,61 @@ export default function homepage({ dark = false }) {
-
+
+
+
+
+
+ I was diagnosed with cancer up in Tucson. The doctor was said to be best oncologist in the state. + Problem was I needed radiation for 45 days not counting weekends and holidays. +
+
+ I had to tell her that that was not doable. I couldn't commute daily and I couldn't rent. I + told her that I could get treatment of some sort in Sierra Vista. She told me that normally she would + fight me, but only 2 Clinics in the state had this latest and greatest radiation hardware. Hers and + Cochise Oncology in Sierra Vista. +
+
+ At Cochise Oncology I was introduced to Dr. Vedula. What a good man and what a great doctor. Check out + his credentials. I am now cancer free for 9 months. It was still 45 days of treatment but no side + effects. Plus, I would go home every day after undergoing treatment. I forget, maybe 15 minutes of + treatment. +
+
+ Do yourself a favor and see Dr. Vedula. +

+ -a Cochise Oncology patient +
+
+
+
+

Testimonials

+
+ I was diagnosed with cancer up in Tucson. The doctor was said to be best oncologist in the state. Problem was + I needed radiation for 45 days not counting weekends and holidays. +
+
+ I had to tell her that that was not doable. I couldn't commute daily and I couldn't rent. I told her + that I could get treatment of some sort in Sierra Vista. She told me that normally she would fight me, but + only 2 Clinics in the state had this latest and greatest radiation hardware. Hers and Cochise Oncology in + Sierra Vista. +
+
+ At Cochise Oncology I was introduced to Dr. Vedula. What a good man and what a great doctor. Check out his + credentials. I am now cancer free for 9 months. It was still 45 days of treatment but no side effects. Plus, I + would go home every day after undergoing treatment. I forget, maybe 15 minutes of treatment. +
+
+ Do yourself a favor and see Dr. Vedula. +

+ -a Cochise Oncology patient +
From 11fe7eafda1bc3ec08610494e999dd6b96d02899 Mon Sep 17 00:00:00 2001 From: Val <44112412+LawfaL@users.noreply.github.com> Date: Tue, 4 Mar 2025 20:49:12 +0700 Subject: [PATCH 5/6] fix: nav --- public/assets/css/style.css | 4 ---- src/components/Header.tsx | 8 ++++---- src/utils/changeHeaderOnScroll.ts | 2 -- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/public/assets/css/style.css b/public/assets/css/style.css index b0b28e8..fe31300 100644 --- a/public/assets/css/style.css +++ b/public/assets/css/style.css @@ -3908,10 +3908,6 @@ a.logo:hover { display: none; } -.body-scrolled .social-nav { - color: #00898b; -} - .social-nav:hover { color: #00abad; } diff --git a/src/components/Header.tsx b/src/components/Header.tsx index ff189c4..fbf39dd 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -8,18 +8,18 @@ import Link from "next/link"; import { FaFacebook, FaLinkedin, FaPhone } from "react-icons/fa"; const shareIcons: Record = { phone: ( - + (520) 803-6644 ), - facebook: , - linkedin: , + facebook: , + linkedin: , }; export default function Header({ links }: { links: typeof navMenuData }) { return ( -