diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 0dd1a88..103b272 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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: [ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..5ab9c41 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}