From 8031db9b22880b0a8ced946251041bb1108e7668 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 9 May 2026 16:36:14 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 232 ++++++++++++----------------------------------- 1 file changed, 58 insertions(+), 174 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0fed981..fd79275 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,17 +2,17 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FaqBase from '@/components/sections/faq/FaqBase'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; -import { CheckCircle, Shield, Star } from "lucide-react"; +import { CheckCircle, Shield, Star, Instagram, Twitter, Linkedin } from "lucide-react"; export default function LandingPage() { return ( @@ -32,16 +32,11 @@ export default function LandingPage() { @@ -134,22 +89,13 @@ export default function LandingPage() { textboxLayout="default" gridVariant="two-columns-alternating-heights" useInvertedBackground={false} - products={[ - { - id: "p1", name: "Executive Umrah", price: "From $5,999", imageSrc: "http://img.b2bpic.net/free-vector/paper-style-vertical-islamic-new-year-poster-template_23-2149008822.jpg"}, - { - id: "p2", name: "Premium Comfort", price: "From $4,499", imageSrc: "http://img.b2bpic.net/free-photo/3d-ramadan-celebration-with-castle_23-2151259807.jpg"}, - { - id: "p3", name: "Essential Pilgrimage", price: "From $3,299", imageSrc: "http://img.b2bpic.net/free-photo/young-man-checked-shirt-hat-pointing-paper-sheet-looking-focused_176474-24198.jpg"}, - { - id: "p4", name: "Family Group Special", price: "Custom Pricing", imageSrc: "http://img.b2bpic.net/free-photo/people-celebrating-ramadan-together_23-2151404312.jpg"}, - { - id: "p5", name: "Community Bulk Pack", price: "Contact for Quote", imageSrc: "http://img.b2bpic.net/free-photo/muslim-women-traveling-together_23-2149305620.jpg"}, - { - id: "p6", name: "Individual Guidance", price: "From $3,899", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-presents-with-flower-petals-arrangement_23-2149343240.jpg"}, - ]} title="Premium Umrah Packages" description="Tailored packages designed for families, community groups, and individuals." + products={[ + { id: "p1", name: "Executive Umrah", price: "From $5,999", imageSrc: "https://img.b2bpic.net/free-photo/abstract-gold-pattern.jpg" }, + { id: "p2", name: "Premium Comfort", price: "From $4,499", imageSrc: "https://img.b2bpic.net/free-photo/abstract-geometric-gold.jpg" }, + { id: "p3", name: "Essential Pilgrimage", price: "From $3,299", imageSrc: "https://img.b2bpic.net/free-photo/minimalist-mosque-vector.jpg" }, + ]} /> @@ -158,123 +104,61 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={false} - plans={[ - { - id: "basic", tag: "Essentials", price: "$3,299", period: "/per person", description: "Everything essential for a comfortable journey.", button: { - text: "Inquire Now"}, - featuresTitle: "Includes:", features: [ - "Hotel accommodation", "Visa processing", "Guided tours"], - }, - { - id: "pro", tag: "Recommended", price: "$4,499", period: "/per person", description: "Greater comfort and premium accommodation.", button: { - text: "Inquire Now"}, - featuresTitle: "Includes:", features: [ - "4-star hotels", "Dedicated support", "Full catering"], - }, - { - id: "premium", tag: "Executive", price: "$5,999", period: "/per person", description: "The ultimate peaceful journey with luxury inclusions.", button: { - text: "Inquire Now"}, - featuresTitle: "Includes:", features: [ - "5-star proximity", "VIP support", "Priority transport"], - }, - ]} title="Flexible Options" description="Choose the journey that suits your spiritual and budgetary needs." + plans={[ + { id: "basic", tag: "Essentials", price: "$3,299", period: "/per person", description: "Everything essential for a comfortable journey.", button: { text: "Inquire Now" }, featuresTitle: "Includes:", features: ["Hotel", "Visa", "Guided"] }, + { id: "pro", tag: "Recommended", price: "$4,499", period: "/per person", description: "Greater comfort and premium accommodation.", button: { text: "Inquire Now" }, featuresTitle: "Includes:", features: ["4-star", "Support", "Full Catering"] }, + { id: "premium", tag: "Executive", price: "$5,999", period: "/per person", description: "The ultimate journey.", button: { text: "Inquire Now" }, featuresTitle: "Includes:", features: ["5-star", "VIP", "Priority"] }, + ]} />
-
-
-
From a435547cbd593a019d605d656a7c996aa4e2af8b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 9 May 2026 16:36:15 +0000 Subject: [PATCH 2/2] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 53147f7..34aea07 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-nunito-sans), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-nunito-sans), sans-serif; + font-family: var(--font-inter), sans-serif; }