From 783c7d911d7ea2770ce0519208a32e228d49bd2f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 17:25:27 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 32 ++++++++++---------------------- 1 file changed, 10 insertions(+), 22 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 59c5966..07fd56e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,39 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; +import { DM_Sans } from "next/font/google"; +import { Archivo } 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 dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const archivo = Archivo({ + variable: "--font-archivo", subsets: ["latin"], }); export const metadata: Metadata = { - title: "StyleHub - Premium Fashion & Clothing Store", description: "Discover premium quality clothing and accessories curated for your unique style. Shop our exclusive collection of fashion pieces with fast shipping worldwide.", keywords: "clothing store, fashion, premium apparel, online shopping, designer clothes", robots: { + title: "BRUTALIST DROP - Premium Streetwear", description: "Minimalist brutalist dark mode premium streetwear e-commerce. Limited drops of 340 gsm cotton blend pieces made in Poland.", keywords: "streetwear, brutalist fashion, premium apparel, limited drops, quality control, made in Poland", robots: { index: true, follow: true, }, openGraph: { - title: "StyleHub - Premium Fashion & Clothing", description: "Explore our curated collection of premium fashion and accessories", type: "website", siteName: "StyleHub", images: [ - { - url: "http://img.b2bpic.net/free-photo/beautiful-fashionable-brunette-wearing-trendy-clothing-sunglasses_613910-637.jpg", alt: "StyleHub Fashion Collection"}, - ], - }, + title: "BRUTALIST DROP - Premium Streetwear", description: "Limited drops of premium brutalist streetwear pieces", type: "website", siteName: "BRUTALIST DROP"}, twitter: { - card: "summary_large_image", title: "StyleHub - Premium Fashion Store", description: "Shop premium clothing and accessories with StyleHub", images: ["http://img.b2bpic.net/free-photo/beautiful-fashionable-brunette-wearing-trendy-clothing-sunglasses_613910-637.jpg"], - }, + card: "summary_large_image", title: "BRUTALIST DROP - Premium Streetwear", description: "Limited drops of premium brutalist streetwear pieces"}, }; export default function RootLayout({ @@ -45,7 +33,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 259f9b4f122757f118117e113240c302df687854 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 17:25:28 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 150 ++++++++++++++++++++++++----------------------- 1 file changed, 76 insertions(+), 74 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e42b4b8..0ba533a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { Mail } from "lucide-react"; +import { Clock, ShoppingCart } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo"; @@ -14,65 +14,66 @@ import FooterSimple from "@/components/sections/footer/FooterSimple"; export default function LandingPage() { return (
-- 2.49.1 From 6edf09cc1143c6fa5a6f6f98002182cc60bff42d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 17:25:29 +0000 Subject: [PATCH 3/4] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 38cd8a1..c480bac 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-lato), sans-serif; + font-family: var(--font-dm-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-lato), sans-serif; + font-family: var(--font-dm-sans), sans-serif; } -- 2.49.1 From 973873b145c352551929eca8b2b79a6ea46ad851 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 17:25:29 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index ee8d361..1fc3da7 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f6f0e9; - --card: #efe7dd; - --foreground: #2b180a; - --primary-cta: #2b180a; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffffe6; + --primary-cta: #e6e6e6; --primary-cta-text: #f6f0e9; - --secondary-cta: #efe7dd; + --secondary-cta: #1a1a1a; --secondary-cta-text: #2b180a; - --accent: #94877c; - --background-accent: #afa094; + --accent: #737373; + --background-accent: #737373; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1