From 875f9a7ba6b459afec09f4bba77c235cff69c67a Mon Sep 17 00:00:00 2001 From: development Date: Fri, 26 Dec 2025 11:42:40 +0000 Subject: [PATCH 1/3] Update src/app/globals.css --- src/app/globals.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 282492b..cd544e6 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -6,8 +6,8 @@ --background: #0a0a0a; --card: #1a1a1a; - --foreground: #f5f0fce6; - --primary-cta: #b366ff; + --foreground: #fffef5e6; + --primary-cta: #facc15; --secondary-cta: #1a1a1a; --accent: #737373; --background-accent: #737373; @@ -495,7 +495,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-poppins), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -508,5 +508,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-poppins), sans-serif; } \ No newline at end of file -- 2.49.1 From fa361b67aefe6f3b658a058fa648a4a11c495582 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 26 Dec 2025 11:42:41 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ae3586e..d577919 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,31 +1,32 @@ import type { Metadata } from "next"; -import { Source_Code_Pro } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const sourceCodePro = Source_Code_Pro({ - variable: "--font-source-code-pro", +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "1 - Premium Specialty Coffee", - description: "Discover exceptional specialty coffee at 1. Premium beans, expert baristas, welcoming atmosphere.", + title: "2 - Premium Specialty Coffee", + description: "Discover exceptional specialty coffee at 2. Premium beans, expert baristas, welcoming atmosphere.", keywords: ["specialty coffee", "coffee shop", "espresso", "cafe", "artisan coffee"], robots: { index: true, follow: true, }, openGraph: { - title: "1 - Premium Specialty Coffee", - description: "Discover exceptional specialty coffee at 1", - siteName: "1", + title: "2 - Premium Specialty Coffee", + description: "Discover exceptional specialty coffee at 2", + siteName: "2", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766749013962-htnou8d4.jpg", - alt: "1 coffee", + alt: "2 coffee", }, ], }, @@ -40,7 +41,7 @@ export default function RootLayout({ {children} @@ -1266,4 +1267,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 559f44b0b9759dc21e4432ee1d7be4833aa505d7 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 26 Dec 2025 11:42:42 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 37a3506..4bcded4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -26,7 +26,7 @@ export default function LandingPage() { > ); -} \ No newline at end of file +} -- 2.49.1