Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -75,7 +75,7 @@ export default function AboutPage() {
|
||||
title: "Intuitive Design Interface",
|
||||
description: "Our platform is designed from the ground up with user experience as the priority. Creating fashion designs should be joyful, not frustrating.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/landing-page-minimalistic-online-fashion-store_23-2149047930.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/landing-page-minimalistic-online-fashion-store_23-2149047930.jpg?_wi=3",
|
||||
imageAlt: "Intuitive design interface",
|
||||
},
|
||||
items: [
|
||||
@@ -95,7 +95,7 @@ export default function AboutPage() {
|
||||
title: "Collaboration at Scale",
|
||||
description: "Work with your team seamlessly. Share, comment, and iterate together in real-time. Perfect for fashion studios and creative teams.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/student-home-taking-notes-while-watching-presentation-closeup_482257-118737.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/student-home-taking-notes-while-watching-presentation-closeup_482257-118737.jpg?_wi=3",
|
||||
imageAlt: "Team collaboration features",
|
||||
},
|
||||
items: [
|
||||
@@ -115,7 +115,7 @@ export default function AboutPage() {
|
||||
title: "From Concept to Reality",
|
||||
description: "Our end-to-end workflow helps you transform sketches into finished designs. Export in multiple formats, ready for production.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-arrangement-with-colors-paint_23-2148577638.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-arrangement-with-colors-paint_23-2148577638.jpg?_wi=3",
|
||||
imageAlt: "Professional export options",
|
||||
},
|
||||
items: [
|
||||
|
||||
@@ -1,24 +1,63 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } 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 { Manrope } 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 manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Curve DZ - Fashion Design Platform",
|
||||
description: "Design custom clothing with pro tools. Sign in with email, Facebook, or Instagram. Create, edit, share fashion designs.",
|
||||
keywords: "fashion design, clothing design, design platform, custom clothes, fashion tools",
|
||||
metadataBase: new URL("https://curve-dz.com"),
|
||||
alternates: {
|
||||
canonical: "https://curve-dz.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Curve DZ - Create Custom Fashion Designs",
|
||||
description: "Design stunning custom clothing with professional tools. Easy sign-in with email, Facebook, or Instagram.",
|
||||
url: "https://curve-dz.com",
|
||||
siteName: "Curve DZ",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/gorgeous-sexy-blond-model-posing-near-cafee_273443-3372.jpg",
|
||||
alt: "Curve DZ Fashion Design Platform",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Curve DZ - Fashion Design Platform",
|
||||
description: "Design custom clothing with powerful professional tools.",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/gorgeous-sexy-blond-model-posing-near-cafee_273443-3372.jpg",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +66,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -112,7 +112,7 @@ export default function HomePage() {
|
||||
title: "Color Customization",
|
||||
description: "Apply unlimited colors to any design element. Create perfect color combinations with our advanced palette system.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-arrangement-with-colors-paint_23-2148577638.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-arrangement-with-colors-paint_23-2148577638.jpg?_wi=1",
|
||||
imageAlt: "Color customization tool interface",
|
||||
},
|
||||
items: [
|
||||
@@ -132,7 +132,7 @@ export default function HomePage() {
|
||||
title: "Image Upload & Editing",
|
||||
description: "Upload your own images and integrate them seamlessly into your designs. Resize, rotate, and position with precision.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/student-home-taking-notes-while-watching-presentation-closeup_482257-118737.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/student-home-taking-notes-while-watching-presentation-closeup_482257-118737.jpg?_wi=1",
|
||||
imageAlt: "Image upload and editing interface",
|
||||
},
|
||||
items: [
|
||||
@@ -152,7 +152,7 @@ export default function HomePage() {
|
||||
title: "Professional Design Tools",
|
||||
description: "Access advanced design features including layers, templates, and collaborative editing for team projects.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/landing-page-minimalistic-online-fashion-store_23-2149047930.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/landing-page-minimalistic-online-fashion-store_23-2149047930.jpg?_wi=1",
|
||||
imageAlt: "Professional design software interface",
|
||||
},
|
||||
items: [
|
||||
@@ -186,21 +186,21 @@ export default function HomePage() {
|
||||
id: "template-1",
|
||||
name: "Summer Dress",
|
||||
price: "Free",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-summer-sale-banner_1188-347.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-summer-sale-banner_1188-347.jpg?_wi=1",
|
||||
imageAlt: "Summer dress template for customization",
|
||||
},
|
||||
{
|
||||
id: "template-2",
|
||||
name: "Classic Jacket",
|
||||
price: "Free",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-black-hat-parka-with-fur-coat_8353-1195.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-black-hat-parka-with-fur-coat_8353-1195.jpg?_wi=1",
|
||||
imageAlt: "Jacket template ready to edit",
|
||||
},
|
||||
{
|
||||
id: "template-3",
|
||||
name: "Modern Pants",
|
||||
price: "Free",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assortment-beige-tone-colored-pants_23-2150773393.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assortment-beige-tone-colored-pants_23-2150773393.jpg?_wi=1",
|
||||
imageAlt: "Pants template for design",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -81,7 +81,7 @@ export default function StudioPage() {
|
||||
title: "Advanced Color Palette",
|
||||
description: "Access professional color tools to match your brand perfectly. Create custom color schemes and save them for future projects.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-arrangement-with-colors-paint_23-2148577638.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-arrangement-with-colors-paint_23-2148577638.jpg?_wi=2",
|
||||
imageAlt: "Color palette tool interface",
|
||||
},
|
||||
items: [
|
||||
@@ -101,7 +101,7 @@ export default function StudioPage() {
|
||||
title: "Seamless Asset Management",
|
||||
description: "Upload, organize, and manage all your design assets in one place. Build your personal library of textures, patterns, and images.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/student-home-taking-notes-while-watching-presentation-closeup_482257-118737.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/student-home-taking-notes-while-watching-presentation-closeup_482257-118737.jpg?_wi=2",
|
||||
imageAlt: "Asset management interface",
|
||||
},
|
||||
items: [
|
||||
@@ -121,7 +121,7 @@ export default function StudioPage() {
|
||||
title: "Export & Share Designs",
|
||||
description: "Export your finished designs in multiple formats. Share directly with clients or on social media with built-in sharing tools.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/landing-page-minimalistic-online-fashion-store_23-2149047930.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/landing-page-minimalistic-online-fashion-store_23-2149047930.jpg?_wi=2",
|
||||
imageAlt: "Export and sharing options",
|
||||
},
|
||||
items: [
|
||||
|
||||
@@ -73,21 +73,21 @@ export default function TemplatesPage() {
|
||||
id: "template-1",
|
||||
name: "Summer Dress",
|
||||
price: "Free",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-summer-sale-banner_1188-347.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-summer-sale-banner_1188-347.jpg?_wi=2",
|
||||
imageAlt: "Summer dress template",
|
||||
},
|
||||
{
|
||||
id: "template-2",
|
||||
name: "Classic Jacket",
|
||||
price: "Free",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-black-hat-parka-with-fur-coat_8353-1195.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-black-hat-parka-with-fur-coat_8353-1195.jpg?_wi=2",
|
||||
imageAlt: "Classic jacket template",
|
||||
},
|
||||
{
|
||||
id: "template-3",
|
||||
name: "Modern Pants",
|
||||
price: "Free",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assortment-beige-tone-colored-pants_23-2150773393.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assortment-beige-tone-colored-pants_23-2150773393.jpg?_wi=2",
|
||||
imageAlt: "Modern pants template",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user