From 3163f21d5663505e122cc17e15499bfa8af5f070 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 27 Apr 2026 20:56:53 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 116 ++++++++++++----------------------------------- 1 file changed, 28 insertions(+), 88 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index feb303f..00276ec 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -22,11 +22,11 @@ export default function LandingPage() { borderRadius="pill" contentWidth="small" sizing="mediumLargeSizeLargeTitles" - background="floatingGradient" - cardStyle="inset" + background="none" + cardStyle="outline" primaryButtonStyle="shadow" secondaryButtonStyle="glass" - headingFontWeight="normal" + headingFontWeight="semibold" > @@ -94,73 +84,23 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" gridVariant="uniform-all-items-equal" - useInvertedBackground={true} + useInvertedBackground={false} products={[ - { id: "r1", name: "Midnight Pulse", price: "$15", imageSrc: "https://img.freepik.com/free-photo/urban-vinyl-release_23-2149075974.jpg?_wi=1" }, - { id: "r2", name: "Digital Dawn", price: "$15", imageSrc: "https://img.freepik.com/free-photo/urban-music-cover-art_23-2148496904.jpg" }, - { id: "r3", name: "Bass Frequency", price: "$15", imageSrc: "https://img.freepik.com/free-photo/urban-electronic-art_23-2150039319.jpg" }, - { id: "r4", name: "System Shock", price: "$15", imageSrc: "https://img.freepik.com/free-photo/urban-sound-wave-art_23-2148328066.jpg" }, - { id: "r5", name: "Neon Dreams", price: "$15", imageSrc: "https://img.freepik.com/free-photo/urban-night-vibes-art_23-2149520237.jpg" }, - { id: "r6", name: "Sonic Storm", price: "$15", imageSrc: "https://img.freepik.com/free-photo/urban-abstract-art_23-2148328069.jpg" }, + { id: "r1", name: "City Lights", price: "Stream", imageSrc: "https://img.freepik.com/free-photo/urban-music-cover-art_23-2148496904.jpg" }, + { id: "r2", name: "Concrete Soul", price: "Stream", imageSrc: "https://img.freepik.com/free-photo/urban-vinyl-release_23-2149075974.jpg" }, ]} - title="Latest Releases" - description="Explore our recent catalog of high-impact electronic masterpieces." - /> - - -
- -
- -
- -
- -
-
@@ -170,7 +110,7 @@ export default function LandingPage() { logoText="I Bang Records" columns={[ { title: "Navigation", items: [{ label: "About", href: "#about" }, { label: "Artists", href: "#features" }] }, - { title: "Links", items: [{ label: "Releases", href: "#products" }, { label: "Contact", href: "#contact" }] }, + { title: "Contact", items: [{ label: "Support", href: "#contact" }] }, ]} imageSrc="https://img.freepik.com/free-photo/urban-vinyl-release_23-2149075974.jpg?_wi=2" /> -- 2.49.1 From c76f190e71e74a65b9fd752f74662714b479649d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 27 Apr 2026 20:56:53 +0000 Subject: [PATCH 2/2] 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 5f144b6..ce536a9 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #fafffb; - --card: #f7fffa; - --foreground: #001a0a; - --primary-cta: #0a7039; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #ff4d00; --primary-cta-text: #fafffb; - --secondary-cta: #ffffff; + --secondary-cta: #333333; --secondary-cta-text: #001a0a; - --accent: #a8d9be; - --background-accent: #6bbf8e; + --accent: #555555; + --background-accent: #222222; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1