Merge version_1 into main #1
@@ -65,7 +65,7 @@ export default function AuthPage() {
|
||||
icon: Lock,
|
||||
},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/modern-authentication-interface-illustra-1774110514458-a84f8547.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/modern-authentication-interface-illustra-1774110514458-a84f8547.png?_wi=2"
|
||||
imageAlt="Modern authentication interface with login options"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
|
||||
@@ -55,7 +55,7 @@ export default function GalleryPage() {
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/preview-of-a-completed-video-showing-a-b-1774110515106-3c744d9b.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/preview-of-a-completed-video-showing-a-b-1774110515106-3c744d9b.png?_wi=2"
|
||||
imageAlt="Sample of beautiful created videos"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
@@ -72,7 +72,7 @@ export default function GalleryPage() {
|
||||
title: "Love Story in Motion",
|
||||
excerpt:
|
||||
"A beautiful compilation of couple moments with romantic transitions and personalized text overlays. Perfect for anniversaries and special romantic occasions.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/preview-of-a-completed-video-showing-a-b-1774110515106-3c744d9b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/preview-of-a-completed-video-showing-a-b-1774110515106-3c744d9b.png?_wi=3",
|
||||
imageAlt: "Romantic couple video compilation",
|
||||
authorName: "Sarah Johnson",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/portrait-of-a-happy-young-woman-smiling--1774110515023-09167851.png",
|
||||
@@ -84,7 +84,7 @@ export default function GalleryPage() {
|
||||
title: "Birthday Bash Highlights",
|
||||
excerpt:
|
||||
"Festive birthday video with colorful transitions, confetti effects, and uplifting celebratory music. Perfect for birthday celebrations and milestone moments.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/sample-video-output-showing-birthday-cel-1774110515203-6d0285e6.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/sample-video-output-showing-birthday-cel-1774110515203-6d0285e6.png?_wi=2",
|
||||
imageAlt: "Birthday celebration video",
|
||||
authorName: "Michael Chen",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/portrait-of-a-smiling-young-man-holding--1774110513911-0d875a1b.png",
|
||||
@@ -96,7 +96,7 @@ export default function GalleryPage() {
|
||||
title: "Years of Togetherness",
|
||||
excerpt:
|
||||
"Elegant anniversary tribute with sophisticated animations, romantic music, and timeless moments. Celebrates years of love and commitment.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/anniversary-video-showcase-featuring-ele-1774110516503-54c7ef70.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/anniversary-video-showcase-featuring-ele-1774110516503-54c7ef70.png?_wi=2",
|
||||
imageAlt: "Anniversary video compilation",
|
||||
authorName: "Emma & David",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/portrait-of-a-couple-together-smiling-on-1774110514678-e8308b29.png",
|
||||
|
||||
@@ -1,24 +1,58 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } 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 { Mulish } 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 mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Video Love Maker - Free Personalized Video Gifts",
|
||||
description: "Create stunning personalized video gifts for special occasions. Combine photos with smooth animations and custom text. Perfect for Teddy Day, Valentine's Day, Rose Day, Birthday, and Anniversary.",
|
||||
keywords: "video maker, personalized videos, special occasions, birthday videos, anniversary videos, romantic video creator, free video creation",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Video Love Maker - Create Personalized Video Gifts Free",
|
||||
description: "Create beautiful personalized video gifts for special occasions. Add 10+ photos, customize text, add animations. Completely free.",
|
||||
type: "website",
|
||||
siteName: "Video Love Maker",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/a-vibrant-joyful-scene-of-a-couple-or-fa-1774110515428-7b153b34.png",
|
||||
alt: "Video Love Maker - Create Personalized Videos",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Video Love Maker - Personalized Video Gifts",
|
||||
description: "Create stunning personalized video gifts for your loved ones on special occasions.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/a-vibrant-joyful-scene-of-a-couple-or-fa-1774110515428-7b153b34.png",
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +61,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +75,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -98,7 +98,7 @@ export default function HomePage() {
|
||||
icon: Lock,
|
||||
},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/modern-authentication-interface-illustra-1774110514458-a84f8547.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/modern-authentication-interface-illustra-1774110514458-a84f8547.png?_wi=1"
|
||||
imageAlt="Modern authentication interface with login options"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="left"
|
||||
@@ -237,7 +237,7 @@ export default function HomePage() {
|
||||
title: "Love Story in Motion",
|
||||
excerpt:
|
||||
"A beautiful compilation of couple moments with romantic transitions and personalized text overlays.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/preview-of-a-completed-video-showing-a-b-1774110515106-3c744d9b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/preview-of-a-completed-video-showing-a-b-1774110515106-3c744d9b.png?_wi=1",
|
||||
imageAlt: "Romantic couple video compilation",
|
||||
authorName: "Video Love Maker",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/portrait-of-a-happy-young-woman-smiling--1774110515023-09167851.png",
|
||||
@@ -249,7 +249,7 @@ export default function HomePage() {
|
||||
title: "Birthday Bash Highlights",
|
||||
excerpt:
|
||||
"Festive birthday video with colorful transitions, confetti effects, and uplifting celebratory music.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/sample-video-output-showing-birthday-cel-1774110515203-6d0285e6.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/sample-video-output-showing-birthday-cel-1774110515203-6d0285e6.png?_wi=1",
|
||||
imageAlt: "Birthday celebration video",
|
||||
authorName: "Video Love Maker",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/portrait-of-a-smiling-young-man-holding--1774110513911-0d875a1b.png",
|
||||
@@ -261,7 +261,7 @@ export default function HomePage() {
|
||||
title: "Years of Togetherness",
|
||||
excerpt:
|
||||
"Elegant anniversary tribute with sophisticated animations, romantic music, and timeless moments.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/anniversary-video-showcase-featuring-ele-1774110516503-54c7ef70.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/anniversary-video-showcase-featuring-ele-1774110516503-54c7ef70.png?_wi=1",
|
||||
imageAlt: "Anniversary video compilation",
|
||||
authorName: "Video Love Maker",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGLP91AVe8GFJtN2pFGA60RDlw/portrait-of-a-couple-together-smiling-on-1774110514678-e8308b29.png",
|
||||
|
||||
Reference in New Issue
Block a user