diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 69a2a6e..89d4fca 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 7d0b8d8..6878c1f 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -156,7 +156,7 @@ export default function DRXTLanding() {