Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-13 01:13:13 +00:00
5 changed files with 79 additions and 40 deletions

View File

@@ -105,7 +105,7 @@ export default function AboutPage() {
icon: Target,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/office-workers-working-together-as-team_23-2149310879.jpg"
imageSrc="http://img.b2bpic.net/free-photo/office-workers-working-together-as-team_23-2149310879.jpg?_wi=1"
imageAlt="Arafat Makkah team meeting"
imagePosition="left"
mediaAnimation="slide-up"
@@ -135,7 +135,7 @@ export default function AboutPage() {
"No hidden charges or surprise fees",
"Honest communication throughout your journey",
],
imageSrc: "http://img.b2bpic.net/free-photo/man-woman-car-dealership-together_23-2148333030.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-woman-car-dealership-together_23-2148333030.jpg?_wi=2",
imageAlt: "Professional consultation",
},
{
@@ -146,7 +146,7 @@ export default function AboutPage() {
"Only partnerships with verified providers",
"Continuous improvement in service delivery",
],
imageSrc: "http://img.b2bpic.net/free-photo/girl-bathrobe_1157-18569.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/girl-bathrobe_1157-18569.jpg?_wi=3",
imageAlt: "Premium facilities",
},
{
@@ -197,7 +197,7 @@ export default function AboutPage() {
icon: Target,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/office-workers-working-together-as-team_23-2149310879.jpg"
imageSrc="http://img.b2bpic.net/free-photo/office-workers-working-together-as-team_23-2149310879.jpg?_wi=2"
imageAlt="Arafat Makkah team"
imagePosition="right"
mediaAnimation="slide-up"

View File

@@ -55,15 +55,15 @@ export default function ContactPage() {
buttonAnimation="slide-up"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/pope-blessing-crowd-sunset_23-2151976027.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pope-blessing-crowd-sunset_23-2151976027.jpg?_wi=4",
imageAlt: "Kaaba call to action",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/part-interior-is-traditional-oriental-style-with-many-ornaments-colored-stained-glass-windows_169016-10744.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/part-interior-is-traditional-oriental-style-with-many-ornaments-colored-stained-glass-windows_169016-10744.jpg?_wi=4",
imageAlt: "Masjid an-Nabawi",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/girl-bathrobe_1157-18569.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/girl-bathrobe_1157-18569.jpg?_wi=5",
imageAlt: "VIP experience",
},
]}
@@ -147,11 +147,11 @@ export default function ContactPage() {
buttonAnimation="slide-up"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/pope-blessing-crowd-sunset_23-2151976027.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pope-blessing-crowd-sunset_23-2151976027.jpg?_wi=5",
imageAlt: "Kaaba inspiration",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/office-workers-working-together-as-team_23-2149310879.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/office-workers-working-together-as-team_23-2149310879.jpg?_wi=3",
imageAlt: "Our team ready to serve",
},
{

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Arafat Makkah Travel Bureau - Umrah & Hajj Packages Pakistan",
description: "Trusted Umrah and Hajj travel agency in Daharki, Sindh. Affordable packages, visa assistance, and flights. Your sacred journey starts here.",
keywords: "Umrah packages Pakistan, Hajj travel agency, Daharki travel, Islamic pilgrimage, Makkah tours, visa services",
metadataBase: new URL("https://arafatmakkah.com"),
alternates: {
canonical: "https://arafatmakkah.com",
},
openGraph: {
title: "Arafat Makkah Travel Bureau - Sacred Journey Experts",
description: "Experience trusted Umrah and Hajj services with Pakistan's leading travel agency.",
url: "https://arafatmakkah.com",
siteName: "Arafat Makkah Travel Bureau",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/pope-blessing-crowd-sunset_23-2151976027.jpg",
alt: "Kaaba in Makkah",
},
],
},
twitter: {
card: "summary_large_image",
title: "Arafat Makkah - Umrah & Hajj Travel Experts",
description: "Book your sacred pilgrimage with Pakistan's most trusted travel agency.",
images: ["http://img.b2bpic.net/free-photo/pope-blessing-crowd-sunset_23-2151976027.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -100,23 +100,23 @@ export default function HomePage() {
buttonAnimation="slide-up"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/pope-blessing-crowd-sunset_23-2151976027.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pope-blessing-crowd-sunset_23-2151976027.jpg?_wi=1",
imageAlt: "Kaaba Holy City Makkah",
},
{
imageSrc: "http://img.b2bpic.net/free-psd/hajj-season-instagram-posts_23-2150401410.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/hajj-season-instagram-posts_23-2150401410.jpg?_wi=1",
imageAlt: "Pilgrims in prayer at Masjid al-Haram",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/part-interior-is-traditional-oriental-style-with-many-ornaments-colored-stained-glass-windows_169016-10744.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/part-interior-is-traditional-oriental-style-with-many-ornaments-colored-stained-glass-windows_169016-10744.jpg?_wi=1",
imageAlt: "Masjid an-Nabawi in Medina",
},
{
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-eid-mubarak-greeting-card-background_1035-26747.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-eid-mubarak-greeting-card-background_1035-26747.jpg?_wi=1",
imageAlt: "Hajj pilgrimage ceremony",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/girl-bathrobe_1157-18569.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/girl-bathrobe_1157-18569.jpg?_wi=1",
imageAlt: "Premium pilgrimage accommodation",
},
]}
@@ -140,7 +140,7 @@ export default function HomePage() {
"All-inclusive services from Pakistan to the Holy Cities",
"Flexible dates and accommodation options available",
],
imageSrc: "http://img.b2bpic.net/free-psd/hajj-season-instagram-posts_23-2150401410.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/hajj-season-instagram-posts_23-2150401410.jpg?_wi=2",
imageAlt: "Umrah pilgrimage service",
},
{
@@ -151,7 +151,7 @@ export default function HomePage() {
"Expert consultants to assist throughout your journey",
"Seamless coordination with Saudi authorities",
],
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-eid-mubarak-greeting-card-background_1035-26747.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-eid-mubarak-greeting-card-background_1035-26747.jpg?_wi=2",
imageAlt: "Hajj pilgrimage ceremony",
},
{
@@ -162,7 +162,7 @@ export default function HomePage() {
"Rapid turnaround times with high approval rates",
"Complete guidance through the application process",
],
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-permanent-resident-cards-map_23-2149828171.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-permanent-resident-cards-map_23-2149828171.jpg?_wi=1",
imageAlt: "Visa documentation service",
},
{
@@ -173,7 +173,7 @@ export default function HomePage() {
"Flexible scheduling and route options",
"Travel insurance and baggage solutions included",
],
imageSrc: "http://img.b2bpic.net/free-photo/airplane-window-from-passenger-seats_53876-65516.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/airplane-window-from-passenger-seats_53876-65516.jpg?_wi=1",
imageAlt: "International flight booking",
},
]}
@@ -224,7 +224,7 @@ export default function HomePage() {
icon: MapPin,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/man-woman-car-dealership-together_23-2148333030.jpg"
imageSrc="http://img.b2bpic.net/free-photo/man-woman-car-dealership-together_23-2148333030.jpg?_wi=1"
imageAlt="Arafat Makkah Travel Bureau office"
imagePosition="right"
mediaAnimation="slide-up"
@@ -380,15 +380,15 @@ export default function HomePage() {
buttonAnimation="slide-up"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/pope-blessing-crowd-sunset_23-2151976027.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pope-blessing-crowd-sunset_23-2151976027.jpg?_wi=2",
imageAlt: "Kaaba call to action",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/part-interior-is-traditional-oriental-style-with-many-ornaments-colored-stained-glass-windows_169016-10744.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/part-interior-is-traditional-oriental-style-with-many-ornaments-colored-stained-glass-windows_169016-10744.jpg?_wi=2",
imageAlt: "Masjid an-Nabawi",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/girl-bathrobe_1157-18569.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/girl-bathrobe_1157-18569.jpg?_wi=2",
imageAlt: "VIP experience",
},
]}

View File

@@ -56,23 +56,23 @@ export default function ServicesPage() {
buttonAnimation="slide-up"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/pope-blessing-crowd-sunset_23-2151976027.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pope-blessing-crowd-sunset_23-2151976027.jpg?_wi=3",
imageAlt: "Kaaba Holy City Makkah",
},
{
imageSrc: "http://img.b2bpic.net/free-psd/hajj-season-instagram-posts_23-2150401410.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/hajj-season-instagram-posts_23-2150401410.jpg?_wi=3",
imageAlt: "Pilgrims in prayer at Masjid al-Haram",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/part-interior-is-traditional-oriental-style-with-many-ornaments-colored-stained-glass-windows_169016-10744.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/part-interior-is-traditional-oriental-style-with-many-ornaments-colored-stained-glass-windows_169016-10744.jpg?_wi=3",
imageAlt: "Masjid an-Nabawi in Medina",
},
{
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-eid-mubarak-greeting-card-background_1035-26747.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-eid-mubarak-greeting-card-background_1035-26747.jpg?_wi=3",
imageAlt: "Hajj pilgrimage ceremony",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/girl-bathrobe_1157-18569.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/girl-bathrobe_1157-18569.jpg?_wi=4",
imageAlt: "Premium pilgrimage accommodation",
},
]}
@@ -96,7 +96,7 @@ export default function ServicesPage() {
"All-inclusive services from Pakistan to the Holy Cities",
"Flexible dates and accommodation options available",
],
imageSrc: "http://img.b2bpic.net/free-psd/hajj-season-instagram-posts_23-2150401410.jpg",
imageSrc: "http://img.b2bpic.net/free-psd/hajj-season-instagram-posts_23-2150401410.jpg?_wi=4",
imageAlt: "Umrah pilgrimage service",
},
{
@@ -107,7 +107,7 @@ export default function ServicesPage() {
"Expert consultants to assist throughout your journey",
"Seamless coordination with Saudi authorities",
],
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-eid-mubarak-greeting-card-background_1035-26747.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-eid-mubarak-greeting-card-background_1035-26747.jpg?_wi=4",
imageAlt: "Hajj pilgrimage ceremony",
},
{
@@ -118,7 +118,7 @@ export default function ServicesPage() {
"Rapid turnaround times with high approval rates",
"Complete guidance through the application process",
],
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-permanent-resident-cards-map_23-2149828171.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-permanent-resident-cards-map_23-2149828171.jpg?_wi=2",
imageAlt: "Visa documentation service",
},
{
@@ -129,7 +129,7 @@ export default function ServicesPage() {
"Flexible scheduling and route options",
"Travel insurance and baggage solutions included",
],
imageSrc: "http://img.b2bpic.net/free-photo/airplane-window-from-passenger-seats_53876-65516.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/airplane-window-from-passenger-seats_53876-65516.jpg?_wi=2",
imageAlt: "International flight booking",
},
]}
@@ -180,7 +180,7 @@ export default function ServicesPage() {
icon: MapPin,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/man-woman-car-dealership-together_23-2148333030.jpg"
imageSrc="http://img.b2bpic.net/free-photo/man-woman-car-dealership-together_23-2148333030.jpg?_wi=3"
imageAlt="Arafat Makkah Travel Bureau office"
imagePosition="right"
mediaAnimation="slide-up"