Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-08 10:58:36 +00:00
2 changed files with 7 additions and 45 deletions

View File

@@ -1,57 +1,20 @@
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";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "FASHIONIST | Iconic Fashion Design Store", description: "Discover haute couture excellence at FASHIONIST. Premium designer collections featuring exclusive pieces crafted with meticulous attention to detail and uncompromising elegance.", keywords: "fashion design, haute couture, luxury clothing, designer store, premium fashion, exclusive collections", metadataBase: new URL("https://fashionist.com"),
alternates: {
canonical: "https://fashionist.com"},
robots: {
index: true,
follow: true,
},
openGraph: {
title: "FASHIONIST | Iconic Fashion Design Store", description: "Experience haute couture excellence. Discover our exclusive collection of premium designer pieces.", url: "https://fashionist.com", siteName: "FASHIONIST", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/fashionable-lady-jeans-with-black-lace-jeans-poses-background-wooden-door-curly-girl-with-bright-red-lips-looks-into-camera-street_197531-28053.jpg", alt: "FASHIONIST Luxury Fashion"},
],
},
twitter: {
card: "summary_large_image", title: "FASHIONIST | Iconic Fashion Design Store", description: "Experience haute couture excellence with our exclusive designer collections.", images: ["http://img.b2bpic.net/free-photo/fashionable-lady-jeans-with-black-lace-jeans-poses-background-wooden-door-curly-girl-with-bright-red-lips-looks-into-camera-street_197531-28053.jpg"],
},
};
title: "FASHIONIST | Iconic Fashion Design Store", description: "Experience haute couture excellence with FASHIONIST. Discover exclusive premium designer pieces crafted with meticulous attention to detail and uncompromising elegance."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -194,7 +194,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplitForm
title="Get In Touch"
description="Reach out to our team for personalized styling consultations, custom orders, or any inquiries about our collections."
description="Get expert styling advice within 24 hours or unlock exclusive early access to new collections. Our team is ready to assist with personalized consultations, custom orders, and styling recommendations."
useInvertedBackground={false}
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },