Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -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: "DRXT - Premium Contemporary Clothing Brand", description: "Shop DRXT's curated collection of contemporary clothing. Premium quality, sustainable practices, and bold designs for the modern individual.", keywords: "clothing brand, fashion, streetwear, contemporary apparel, sustainable fashion, premium clothing", metadataBase: new URL("https://drxt.com"),
|
||||
alternates: {
|
||||
canonical: "https://drxt.com"},
|
||||
openGraph: {
|
||||
title: "DRXT - Elevate Your Style", description: "Discover curated collections of contemporary clothing designed for the modern individual.", url: "https://drxt.com", siteName: "DRXT", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/young-black-spanish-male-friends-standing-front-blue-metal-gate_181624-57919.jpg", alt: "DRXT Collection"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "DRXT - Premium Clothing Brand", description: "Elevate your style with our curated collection of contemporary clothing.", images: ["http://img.b2bpic.net/free-photo/young-black-spanish-male-friends-standing-front-blue-metal-gate_181624-57919.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "DRXT - Premium Fashion Collections", description: "Discover curated collections of contemporary clothing designed for the modern individual. Premium quality meets bold aesthetics."};
|
||||
|
||||
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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -156,7 +156,7 @@ export default function DRXTLanding() {
|
||||
<TestimonialCardFifteen
|
||||
testimonial="DRXT has completely transformed my wardrobe. The quality is exceptional, the designs are unique, and every piece feels like an investment in my personal style. Highly recommend!"
|
||||
rating={5}
|
||||
author="Alex Thompson, Fashion Influencer"
|
||||
author="Alex Thompson, Fashion Influencer • 50k+ Followers • Verified Buyer"
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
|
||||
Reference in New Issue
Block a user