Merge version_2 into main #4
@@ -1,53 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Hollow District | Minimalist Sustainable Fashion", description: "Contemporary minimalist clothing celebrating simplicity, quality, and timeless style. Shop sustainable fashion pieces designed for those who value substance over trend.", keywords: "sustainable fashion, minimalist clothing, ethical apparel, timeless style, contemporary fashion", metadataBase: new URL("https://hollowdistrict.com"),
|
||||
alternates: {
|
||||
canonical: "https://hollowdistrict.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Hollow District | Minimalist Sustainable Fashion", description: "Contemporary minimalist clothing celebrating simplicity, quality, and timeless style.", url: "https://hollowdistrict.com", siteName: "Hollow District", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/close-up-hands-holding-sweater_23-2149190431.jpg", alt: "Hollow District minimalist fashion collection"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Hollow District | Minimalist Sustainable Fashion", description: "Contemporary minimalist clothing for those who value quality over quantity.", images: ["http://img.b2bpic.net/free-photo/close-up-hands-holding-sweater_23-2149190431.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Hollow District - Minimalist Fashion", description: "Contemporary minimalist clothing that celebrates simplicity, sustainability, and timeless style."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -153,7 +153,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", title: "Finally found my uniform", quote: "Hollow District's minimalist approach to fashion completely changed how I shop. I now have a cohesive wardrobe of pieces that work together perfectly. Quality is exceptional.", name: "Sarah Mitchell", role: "Creative Director", imageSrc: "http://img.b2bpic.net/free-photo/confident-beautiful-young-woman-portrait_23-2148148150.jpg", imageAlt: "Sarah Mitchell portrait"
|
||||
id: "1", title: "Finally found my uniform", quote: "Hollow District's minimalist approach gave me the cohesive wardrobe I'd always wanted.", name: "Sarah Mitchell", role: "Creative Director", imageSrc: "http://img.b2bpic.net/free-photo/confident-beautiful-young-woman-portrait_23-2148148150.jpg", imageAlt: "Sarah Mitchell portrait"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Sustainable without compromise", quote: "I was skeptical about sustainable fashion, but Hollow District proves you don't have to sacrifice style. The craftsmanship is evident in every detail.", name: "Marcus Chen", role: "Architect", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Marcus Chen portrait"
|
||||
|
||||
Reference in New Issue
Block a user