From 3ca3fc0c018d8915729c7d65d4cdb1f3269314f3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 21:41:38 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index db4f6ae..f5956f6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -115,21 +115,21 @@ export default function AboutPage() { id: "laura", name: "Laura Becraft", role: "Principal & Co-Founder", - imageSrc: "http://img.b2bpic.net/free-photo/furious-mature-business-man-conference-room_1262-3010.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/furious-mature-business-man-conference-room_1262-3010.jpg?_wi=2", imageAlt: "Laura Becraft, Principal", }, { id: "lauren", name: "Lauren Ward", role: "Principal & Co-Founder", - imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-holding-hand-pocket_23-2148095777.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-holding-hand-pocket_23-2148095777.jpg?_wi=2", imageAlt: "Lauren Ward, Principal", }, { id: "expert", name: "Strategic Advisory Board", role: "Compliance & Distribution Expert", - imageSrc: "http://img.b2bpic.net/free-photo/happy-successful-businessman-posing-outside_74855-2003.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-successful-businessman-posing-outside_74855-2003.jpg?_wi=2", imageAlt: "Strategic Advisory Expert", }, ]} @@ -150,7 +150,7 @@ export default function AboutPage() { value: "30+", title: "Years of Experience", description: "Deep expertise in sales, marketing, operations, compliance, and distribution across the beverage alcohol industry.", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-working-together_23-2149759019.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-working-together_23-2149759019.jpg?_wi=3", imageAlt: "years of experience career professional", }, { @@ -158,7 +158,7 @@ export default function AboutPage() { value: "360°", title: "Full-Service Approach", description: "End-to-end solutions from brand concept through consumer execution, market positioning, and long-term sustainable growth.", - imageSrc: "http://img.b2bpic.net/free-photo/multiethnic-colleagues-pitching-investment-strategy-manager_482257-123615.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/multiethnic-colleagues-pitching-investment-strategy-manager_482257-123615.jpg?_wi=3", imageAlt: "complete service solution package", }, { @@ -166,7 +166,7 @@ export default function AboutPage() { value: "Multi-Channel", title: "Market Expertise", description: "Comprehensive reach across domestic U.S., cruise lines, military, duty-free, and Caribbean markets with proven regulatory expertise.", - imageSrc: "http://img.b2bpic.net/free-vector/social-media-network-flat-design_23-2147525836.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/social-media-network-flat-design_23-2147525836.jpg?_wi=3", imageAlt: "global market coverage network", }, ]} -- 2.49.1 From 921f24af908cdd8c6bed2474d106f4b2c93de05c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 21:41:39 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..73d4571 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Source_Sans_3 } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Brazen Imports & Consulting - Premium Beverage Alcohol Importing & Brand Building", + description: "30+ years of expertise in full-service liquor importing, brand development, and U.S. market execution. From concept to consumer—your strategic partner in beverage alcohol growth.", + keywords: "beverage alcohol importing, liquor importing, brand development, spirits distribution, market entry, compliance, logistics", + metadataBase: new URL("https://brazenimports.com"), + alternates: { + canonical: "https://brazenimports.com", + }, + openGraph: { + title: "Brazen Imports & Consulting - Bold Strategy Meets Proven Execution", + description: "Full-service beverage alcohol importing and consulting with 30+ years of industry expertise. Build your brand. Scale your market.", + url: "https://brazenimports.com", + siteName: "Brazen Imports & Consulting", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/sustainably-produced-alcoholic-beverage_23-2150163007.jpg", + alt: "Brazen Imports premium spirits and beverages", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Brazen Imports & Consulting - Beverage Alcohol Importing Expert", + description: "Strategic partner for U.S. beverage alcohol brand growth and market expansion.", + images: ["http://img.b2bpic.net/free-photo/sustainably-produced-alcoholic-beverage_23-2150163007.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}