10 Commits

Author SHA1 Message Date
43e57f2c9e Merge version_3 into main
Merge version_3 into main
2026-03-05 06:40:42 +00:00
27c9b568db Update src/app/page.tsx 2026-03-05 06:40:38 +00:00
2c6284c164 Update src/app/layout.tsx 2026-03-05 06:40:38 +00:00
b614c4148c Merge version_2 into main
Merge version_2 into main
2026-03-05 06:36:33 +00:00
365d911110 Update src/app/page.tsx 2026-03-05 06:36:29 +00:00
e60144459f Update src/app/layout.tsx 2026-03-05 06:36:28 +00:00
c796a8e2aa Merge version_1 into main
Merge version_1 into main
2026-03-05 06:31:20 +00:00
0f3a71d855 Merge version_1 into main
Merge version_1 into main
2026-03-05 06:30:24 +00:00
739bb604f8 Merge version_1 into main
Merge version_1 into main
2026-03-05 06:29:19 +00:00
134da6fbdf Merge version_1 into main
Merge version_1 into main
2026-03-05 06:28:04 +00:00
2 changed files with 17 additions and 38 deletions

View File

@@ -1,49 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "RSVP | Sarah & James Wedding", description: "Confirm your attendance at our wedding on June 15, 2025. Share dietary restrictions and let us know you're celebrating with us.", keywords: "wedding RSVP, wedding invitation, confirm attendance, dietary restrictions", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Join Us in Celebrating", description: "We'd love for you to be part of our special day. RSVP now!", type: "website", siteName: "Sarah & James Wedding"},
twitter: {
card: "summary_large_image", title: "You're Invited | Wedding RSVP", description: "Join us as we say 'I do!' RSVP in 60 seconds."},
};
title: "Sarah & James - Wedding RSVP", description: "Join us as we celebrate our special day. RSVP in 60 seconds."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -61,7 +61,8 @@ export default function WeddingRSVP() {
}
]}
buttons={[
{ text: "Confirm Your Attendance", href: "contact" }
{ text: "RSVP Now", href: "contact" },
{ text: "View Details", href: "faq" }
]}
/>
</div>
@@ -70,7 +71,7 @@ export default function WeddingRSVP() {
<ContactCenter
tag="RSVP Form"
title="Tell Us You're Coming"
description="Complete this quick form so we can finalize seating arrangements and catering details. We promise it takes less than a minute!"
description="Complete this quick form so we can finalize seating arrangements and catering details. We'll send confirmation details and event logistics to your email within 24 hours."
tagIcon={Heart}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
@@ -113,4 +114,4 @@ export default function WeddingRSVP() {
</div>
</ThemeProvider>
);
}
}