Merge version_2 into main #7

Merged
bender merged 2 commits from version_2 into main 2026-03-06 21:10:31 +00:00
2 changed files with 14 additions and 48 deletions

View File

@@ -1,57 +1,24 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Inter_Tight } from "next/font/google";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Ghost - Premium Streetwear | Silent Power", description: "Move silent. Become unstoppable. Premium streetwear for gym athletes and silent builders. Limited drops, minimalist design, maximum impact.", keywords: "streetwear, gym apparel, premium clothing, limited drops, fitness fashion, ghost brand", metadataBase: new URL("https://ghostwear.com"),
alternates: {
canonical: "https://ghostwear.com"},
openGraph: {
title: "Ghost - Premium Streetwear | Move Silent", description: "Premium streetwear for those who grind in silence. Limited drops designed for athletes and builders.", url: "https://ghostwear.com", siteName: "Ghost", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/sportsman-sitting-looking-camera-football-field_23-2148203731.jpg", alt: "Ghost Premium Streetwear"},
],
},
twitter: {
card: "summary_large_image", title: "Ghost - Move Silent. Become Unstoppable.", description: "Premium streetwear for the silent builders. Limited drops, premium quality, mysterious brand.", images: ["http://img.b2bpic.net/free-photo/sportsman-sitting-looking-camera-football-field_23-2148203731.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Ghost - Move Silent", description: "Ghost apparel for the silent builders"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={interTight.variable}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -55,7 +55,7 @@ export default function GhostLanding() {
background={{ variant: "radial-gradient" }}
leftCarouselItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-stretching-preparing-exercise-outdoors_23-2149676923.jpg?_wi=1", imageAlt: "Dark gym training aesthetic"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaV3jvedNfnzal4nFGkFl7XZsi/uploaded-1772831381408-p1n8gykw.png", imageAlt: "Dark gym training aesthetic"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-smartphone-sitting-cafe_23-2147771342.jpg?_wi=1", imageAlt: "Urban night aesthetic"
@@ -267,4 +267,4 @@ export default function GhostLanding() {
</div>
</ThemeProvider>
);
}
}