Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-21 22:53:43 +00:00
5 changed files with 63 additions and 24 deletions

View File

@@ -62,7 +62,7 @@ export default function AccommodationsPage() {
price: "Premium",
variant: "Luxury Villas",
imageSrc:
"http://img.b2bpic.net/free-photo/tea-set-with-baklava-jams-dried-fruits_140725-8096.jpg",
"http://img.b2bpic.net/free-photo/tea-set-with-baklava-jams-dried-fruits_140725-8096.jpg?_wi=2",
imageAlt: "Luxury villa accommodation",
},
{
@@ -71,7 +71,7 @@ export default function AccommodationsPage() {
price: "Mid-Range",
variant: "Modern Apartments",
imageSrc:
"http://img.b2bpic.net/free-photo/bird-view-shanghai-china_1127-3037.jpg",
"http://img.b2bpic.net/free-photo/bird-view-shanghai-china_1127-3037.jpg?_wi=2",
imageAlt: "Modern apartment accommodation",
},
{
@@ -80,7 +80,7 @@ export default function AccommodationsPage() {
price: "Upscale",
variant: "5-Star Hotel",
imageSrc:
"http://img.b2bpic.net/free-photo/lamp-comfort-bed-pillow-fabric_1203-4833.jpg",
"http://img.b2bpic.net/free-photo/lamp-comfort-bed-pillow-fabric_1203-4833.jpg?_wi=2",
imageAlt: "Boutique hotel accommodation",
},
{
@@ -89,7 +89,7 @@ export default function AccommodationsPage() {
price: "Moderate",
variant: "Authentic Riad",
imageSrc:
"http://img.b2bpic.net/free-photo/lamps-arab-restaurant_23-2147794383.jpg",
"http://img.b2bpic.net/free-photo/lamps-arab-restaurant_23-2147794383.jpg?_wi=2",
imageAlt: "Traditional Moroccan riad",
},
{
@@ -98,7 +98,7 @@ export default function AccommodationsPage() {
price: "Luxury",
variant: "Seaside Villa",
imageSrc:
"http://img.b2bpic.net/free-photo/home-luxury-pillow-interior-hotel_1203-4742.jpg",
"http://img.b2bpic.net/free-photo/home-luxury-pillow-interior-hotel_1203-4742.jpg?_wi=2",
imageAlt: "Villa with ocean views",
},
{
@@ -107,7 +107,7 @@ export default function AccommodationsPage() {
price: "Mid-Range",
variant: "Comfortable Hotel",
imageSrc:
"http://img.b2bpic.net/free-photo/pillow-bed-with-light-lamp_1203-9443.jpg",
"http://img.b2bpic.net/free-photo/pillow-bed-with-light-lamp_1203-9443.jpg?_wi=2",
imageAlt: "Comfortable business hotel",
},
]}

View File

@@ -76,7 +76,7 @@ export default function ContactPage() {
},
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/classic-architecture-beautiful-home-with-flowers_23-2151913138.jpg"
imageSrc="http://img.b2bpic.net/free-photo/classic-architecture-beautiful-home-with-flowers_23-2151913138.jpg?_wi=2"
imageAlt="Wedding celebration at Villa Azzaitoun"
mediaAnimation="blur-reveal"
imagePosition="right"

View File

@@ -111,7 +111,7 @@ export default function GuestInfoPage() {
content: "Join us for a leisurely brunch on Saturday morning at 11:00 AM. This casual gathering allows guests to relax, enjoy good food, and spend quality time together before departing. The perfect way to conclude the weekend celebration.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/many-atmospheric-dress-pink-charming_1304-2512.jpg"
imageSrc="http://img.b2bpic.net/free-photo/many-atmospheric-dress-pink-charming_1304-2512.jpg?_wi=2"
imageAlt="Villa Azzaitoun ceremony space"
mediaAnimation="slide-up"
useInvertedBackground={true}

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } 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 { Archivo } 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 archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Hiba & Ramey Wedding - May 7, 2026 - Villa Azzaitoun, Rabat",
description: "Join us for an unforgettable destination wedding celebration at Villa Azzaitoun in Rabat, Morocco on May 7, 2026. Explore event details, accommodations, and practical information for guests.",
keywords: "wedding, Rabat, Morocco, Villa Azzaitoun, destination wedding, May 2026, celebration",
metadataBase: new URL("https://hibaramey.com"),
alternates: {
canonical: "https://hibaramey.com",
},
openGraph: {
title: "Hiba & Ramey Wedding - May 7, 2026",
description: "Join our celebration of love at Villa Azzaitoun in Rabat, Morocco. An elegant destination wedding filled with tradition and modern luxury.",
url: "https://hibaramey.com",
siteName: "Hiba & Ramey Wedding",
images: [
{
url: "http://img.b2bpic.net/free-photo/classic-architecture-beautiful-home-with-flowers_23-2151913138.jpg",
alt: "Hiba & Ramey Wedding Celebration",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Hiba & Ramey Wedding - May 7, 2026",
description: "Join our elegant celebration at Villa Azzaitoun in Rabat. Discover accommodations, event details, and practical information.",
images: ["http://img.b2bpic.net/free-photo/classic-architecture-beautiful-home-with-flowers_23-2151913138.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={`${archivo.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -63,7 +63,7 @@ export default function HomePage() {
{ text: "Plan Your Stay", href: "/accommodations" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/classic-architecture-beautiful-home-with-flowers_23-2151913138.jpg"
imageSrc="http://img.b2bpic.net/free-photo/classic-architecture-beautiful-home-with-flowers_23-2151913138.jpg?_wi=1"
imageAlt="Wedding ceremony setup at Villa Azzaitoun"
mediaAnimation="blur-reveal"
imagePosition="right"
@@ -121,7 +121,7 @@ export default function HomePage() {
"Join us for a leisurely brunch on Saturday morning at 11:00 AM. This casual gathering allows guests to relax, enjoy good food, and spend quality time together before departing. The perfect way to conclude the weekend celebration.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/many-atmospheric-dress-pink-charming_1304-2512.jpg"
imageSrc="http://img.b2bpic.net/free-photo/many-atmospheric-dress-pink-charming_1304-2512.jpg?_wi=1"
imageAlt="Villa Azzaitoun ceremony space"
mediaAnimation="slide-up"
useInvertedBackground={true}
@@ -149,7 +149,7 @@ export default function HomePage() {
price: "Premium",
variant: "Luxury Villas",
imageSrc:
"http://img.b2bpic.net/free-photo/tea-set-with-baklava-jams-dried-fruits_140725-8096.jpg",
"http://img.b2bpic.net/free-photo/tea-set-with-baklava-jams-dried-fruits_140725-8096.jpg?_wi=1",
imageAlt: "Luxury villa accommodation",
},
{
@@ -158,7 +158,7 @@ export default function HomePage() {
price: "Mid-Range",
variant: "Modern Apartments",
imageSrc:
"http://img.b2bpic.net/free-photo/bird-view-shanghai-china_1127-3037.jpg",
"http://img.b2bpic.net/free-photo/bird-view-shanghai-china_1127-3037.jpg?_wi=1",
imageAlt: "Modern apartment accommodation",
},
{
@@ -167,7 +167,7 @@ export default function HomePage() {
price: "Upscale",
variant: "5-Star Hotel",
imageSrc:
"http://img.b2bpic.net/free-photo/lamp-comfort-bed-pillow-fabric_1203-4833.jpg",
"http://img.b2bpic.net/free-photo/lamp-comfort-bed-pillow-fabric_1203-4833.jpg?_wi=1",
imageAlt: "Boutique hotel accommodation",
},
{
@@ -176,7 +176,7 @@ export default function HomePage() {
price: "Moderate",
variant: "Authentic Riad",
imageSrc:
"http://img.b2bpic.net/free-photo/lamps-arab-restaurant_23-2147794383.jpg",
"http://img.b2bpic.net/free-photo/lamps-arab-restaurant_23-2147794383.jpg?_wi=1",
imageAlt: "Traditional Moroccan riad",
},
{
@@ -185,7 +185,7 @@ export default function HomePage() {
price: "Luxury",
variant: "Seaside Villa",
imageSrc:
"http://img.b2bpic.net/free-photo/home-luxury-pillow-interior-hotel_1203-4742.jpg",
"http://img.b2bpic.net/free-photo/home-luxury-pillow-interior-hotel_1203-4742.jpg?_wi=1",
imageAlt: "Villa with ocean views",
},
{
@@ -194,7 +194,7 @@ export default function HomePage() {
price: "Mid-Range",
variant: "Comfortable Hotel",
imageSrc:
"http://img.b2bpic.net/free-photo/pillow-bed-with-light-lamp_1203-9443.jpg",
"http://img.b2bpic.net/free-photo/pillow-bed-with-light-lamp_1203-9443.jpg?_wi=1",
imageAlt: "Comfortable business hotel",
},
]}