Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-03-18 21:41:43 +00:00
4 changed files with 64 additions and 25 deletions

View File

@@ -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",
},
]}

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -227,7 +227,7 @@ export default function HomePage() {
value: "30+",
title: "Years of Experience",
description: "Deep industry expertise across sales, marketing, operations, compliance, and distribution.",
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=1",
imageAlt: "years of experience career professional",
},
{
@@ -235,7 +235,7 @@ export default function HomePage() {
value: "360°",
title: "Full-Service Model",
description: "End-to-end solutions from brand concept to consumer execution and long-term 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=1",
imageAlt: "complete service solution package",
},
{
@@ -243,7 +243,7 @@ export default function HomePage() {
value: "Multi-Channel",
title: "Market Coverage",
description: "Domestic, cruise lines, military, duty-free, and Caribbean market expertise and reach.",
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=1",
imageAlt: "global market coverage network",
},
{
@@ -251,7 +251,7 @@ export default function HomePage() {
value: "100%",
title: "Client Focus",
description: "Custom-tailored programs designed specifically for each brand's unique market goals.",
imageSrc: "http://img.b2bpic.net/free-photo/crazy-man-funny-expression_1194-3203.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/crazy-man-funny-expression_1194-3203.jpg?_wi=1",
imageAlt: "client focused customer service",
},
]}
@@ -279,21 +279,21 @@ export default function HomePage() {
id: "laura",
name: "Laura Becraft",
role: "Principal",
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=1",
imageAlt: "professional woman executive portrait",
},
{
id: "lauren",
name: "Lauren Ward",
role: "Principal",
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=1",
imageAlt: "professional woman business executive",
},
{
id: "expert",
name: "Strategic Advisory",
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=1",
imageAlt: "business professional expertise portrait",
},
]}

View File

@@ -139,7 +139,7 @@ export default function ServicesPage() {
value: "30+",
title: "Years Industry Experience",
description: "Three decades of proven success in beverage alcohol importing, brand development, and U.S. market expansion across all major channels.",
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=2",
imageAlt: "years of experience career professional",
},
{
@@ -147,7 +147,7 @@ export default function ServicesPage() {
value: "360°",
title: "Integrated Approach",
description: "End-to-end service model from brand conception through consumer execution. No gaps, no third parties—we own your success.",
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=2",
imageAlt: "complete service solution package",
},
{
@@ -155,7 +155,7 @@ export default function ServicesPage() {
value: "Multi-Market",
title: "Extensive Market Coverage",
description: "Expertise across domestic, cruise lines, military, duty-free, and Caribbean channels. We know each market's unique requirements and opportunities.",
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=2",
imageAlt: "global market coverage network",
},
{
@@ -163,7 +163,7 @@ export default function ServicesPage() {
value: "Custom",
title: "Tailored Programs",
description: "Every brand is unique. We develop customized strategies aligned to your specific goals, target audience, and market position.",
imageSrc: "http://img.b2bpic.net/free-photo/crazy-man-funny-expression_1194-3203.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/crazy-man-funny-expression_1194-3203.jpg?_wi=2",
imageAlt: "client focused customer service",
},
]}