From fbc33aa4696311ef63c3e730cf8c8ca6d3d8f5e7 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 06:37:27 +0000 Subject: [PATCH 1/4] 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 ae99f37..963f7ea 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,25 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; +import { Playfair_Display } 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 playfairDisplay = Playfair_Display({ + variable: "--font-playfair-display", subsets: ["latin"], + weight: ["400", "500", "600", "700", "800", "900"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Brew Haven - Specialty Coffee & Cozy Café", description: "Discover expertly roasted specialty coffees in our welcoming café. Premium beans, skilled baristas, and the perfect ambiance await.", keywords: "coffee shop, specialty coffee, espresso, café, cold brew, coffee roastery", openGraph: { - title: "Brew Haven - Specialty Coffee & Cozy Café", description: "Discover expertly roasted specialty coffees in our welcoming café.", siteName: "Brew Haven", type: "website"}, + title: "Abu Saleh Coffee - Premium Coffee in Amman, Jordan", description: "Experience premium coffee in Amman. Open 24/7 with freshly roasted beans, expert baristas, and a luxurious atmosphere. Located in the heart of Amman.", keywords: "coffee, Amman, Jordan, specialty coffee, 24/7 café, premium coffee roastery", openGraph: { + title: "Abu Saleh Coffee - Premium Coffee in Amman", description: "Premium coffee experience in Amman, Jordan. Open 24/7 with luxury ambiance.", siteName: "Abu Saleh Coffee", type: "website"}, twitter: { - card: "summary_large_image", title: "Brew Haven - Premium Specialty Coffees", description: "Join us for expertly crafted coffee in a warm, inviting atmosphere."}, + card: "summary_large_image", title: "Abu Saleh Coffee - Amman's Premium Coffee Destination", description: "Experience premium coffee 24/7 in the heart of Amman, Jordan."}, }; export default function RootLayout({ @@ -30,7 +31,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 9a9ac3f5056b48ba496557095eeef64ea5672b06 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 06:37:28 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 153 ++++++++++++++++++++++++++--------------------- 1 file changed, 85 insertions(+), 68 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8310855..ba76718 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,29 +9,30 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import { Coffee, Zap, Sparkles, Users, Globe, Award, CheckCircle, Mail } from 'lucide-react'; +import { Coffee, Zap, Sparkles, Users, Globe, Award, CheckCircle, Mail, MapPin, Phone, Clock } from 'lucide-react'; export default function LandingPage() { return (