Merge version_3 into main #5
@@ -1,11 +1,17 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Hollow District - Minimalist Fashion", description: "Contemporary minimalist clothing that celebrates simplicity, sustainability, and timeless style."};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -14,7 +20,9 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -51,7 +51,7 @@ export default function LandingPage() {
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
buttons={[
|
||||
{ text: "Shop Now", href: "#products" },
|
||||
{ text: "Explore Collection", href: "#collections" }
|
||||
{ text: "Browse All Pieces", href: "#collections" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
@@ -153,7 +153,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
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: "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: "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