Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 163f340947 | |||
| 3b7d039dde | |||
| 2699190b7e | |||
| 1832eb25d1 | |||
| 67ef58c55b |
@@ -1,54 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Open_Sans } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const openSans = Open_Sans({
|
const geist = Geist({
|
||||||
variable: "--font-open-sans", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const halant = Halant({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "MomentHub - Guest Photo Collection Without an App", description: "Collect photos, videos, and messages from guests via QR code. No app required. Organized beautifully. Perfect for weddings, events, and celebrations.", keywords: "guest photo collection, QR code, event memories, wedding photos, no app required", robots: {
|
title: "Create Next App", description: "Generated by create next app"};
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "MomentHub - Turn Guest Moments into Timeless Memories", description: "Collect all photos, videos, and messages from your event instantly. One QR code. Organized beautifully. No app installation needed.", type: "website", siteName: "MomentHub", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/side-view-couple-with-pina-colada_23-2150183984.jpg", alt: "MomentHub - Guest Photo Collection Platform"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "MomentHub - Collect Memories Without Apps", description: "Turn your celebration into timeless organized memories. One QR code. All moments. No complexity.", images: ["http://img.b2bpic.net/free-photo/side-view-couple-with-pina-colada_23-2150183984.jpg"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${openSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
]}
|
]}
|
||||||
button={{ text: "Start Now", href: "hero" }}
|
button={{ text: "Create Event Free", href: "hero" }}
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -69,7 +69,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
carouselPosition="right"
|
carouselPosition="right"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Start Now", href: "#" },
|
{ text: "Create Event Free", href: "#" },
|
||||||
{ text: "See How It Works", href: "how-it-works" },
|
{ text: "See How It Works", href: "how-it-works" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user