Merge version_1 into main #1
@@ -115,21 +115,21 @@ export default function AboutPage() {
|
|||||||
id: "laura",
|
id: "laura",
|
||||||
name: "Laura Becraft",
|
name: "Laura Becraft",
|
||||||
role: "Principal & Co-Founder",
|
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",
|
imageAlt: "Laura Becraft, Principal",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "lauren",
|
id: "lauren",
|
||||||
name: "Lauren Ward",
|
name: "Lauren Ward",
|
||||||
role: "Principal & Co-Founder",
|
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",
|
imageAlt: "Lauren Ward, Principal",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "expert",
|
id: "expert",
|
||||||
name: "Strategic Advisory Board",
|
name: "Strategic Advisory Board",
|
||||||
role: "Compliance & Distribution Expert",
|
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",
|
imageAlt: "Strategic Advisory Expert",
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -150,7 +150,7 @@ export default function AboutPage() {
|
|||||||
value: "30+",
|
value: "30+",
|
||||||
title: "Years of Experience",
|
title: "Years of Experience",
|
||||||
description: "Deep expertise in sales, marketing, operations, compliance, and distribution across the beverage alcohol industry.",
|
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",
|
imageAlt: "years of experience career professional",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -158,7 +158,7 @@ export default function AboutPage() {
|
|||||||
value: "360°",
|
value: "360°",
|
||||||
title: "Full-Service Approach",
|
title: "Full-Service Approach",
|
||||||
description: "End-to-end solutions from brand concept through consumer execution, market positioning, and long-term sustainable growth.",
|
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",
|
imageAlt: "complete service solution package",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -166,7 +166,7 @@ export default function AboutPage() {
|
|||||||
value: "Multi-Channel",
|
value: "Multi-Channel",
|
||||||
title: "Market Expertise",
|
title: "Market Expertise",
|
||||||
description: "Comprehensive reach across domestic U.S., cruise lines, military, duty-free, and Caribbean markets with proven regulatory 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",
|
imageAlt: "global market coverage network",
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -1,24 +1,61 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Halant } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
|
import { Source_Sans_3 } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
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"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
export const metadata: Metadata = {
|
variable: "--font-inter",
|
||||||
title: "Webild components 2",
|
subsets: ["latin"],
|
||||||
description: "Generated by create next app",
|
});
|
||||||
};
|
|
||||||
|
|
||||||
const sourceSans3 = Source_Sans_3({
|
const sourceSans3 = Source_Sans_3({
|
||||||
variable: "--font-source-sans-3",
|
variable: "--font-source-sans-3",
|
||||||
subsets: ["latin"],
|
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({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${sourceSans3.variable} antialiased`}>
|
<body
|
||||||
|
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||||
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -227,7 +227,7 @@ export default function HomePage() {
|
|||||||
value: "30+",
|
value: "30+",
|
||||||
title: "Years of Experience",
|
title: "Years of Experience",
|
||||||
description: "Deep industry expertise across sales, marketing, operations, compliance, and distribution.",
|
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",
|
imageAlt: "years of experience career professional",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -235,7 +235,7 @@ export default function HomePage() {
|
|||||||
value: "360°",
|
value: "360°",
|
||||||
title: "Full-Service Model",
|
title: "Full-Service Model",
|
||||||
description: "End-to-end solutions from brand concept to consumer execution and long-term growth.",
|
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",
|
imageAlt: "complete service solution package",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -243,7 +243,7 @@ export default function HomePage() {
|
|||||||
value: "Multi-Channel",
|
value: "Multi-Channel",
|
||||||
title: "Market Coverage",
|
title: "Market Coverage",
|
||||||
description: "Domestic, cruise lines, military, duty-free, and Caribbean market expertise and reach.",
|
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",
|
imageAlt: "global market coverage network",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -251,7 +251,7 @@ export default function HomePage() {
|
|||||||
value: "100%",
|
value: "100%",
|
||||||
title: "Client Focus",
|
title: "Client Focus",
|
||||||
description: "Custom-tailored programs designed specifically for each brand's unique market goals.",
|
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",
|
imageAlt: "client focused customer service",
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -279,21 +279,21 @@ export default function HomePage() {
|
|||||||
id: "laura",
|
id: "laura",
|
||||||
name: "Laura Becraft",
|
name: "Laura Becraft",
|
||||||
role: "Principal",
|
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",
|
imageAlt: "professional woman executive portrait",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "lauren",
|
id: "lauren",
|
||||||
name: "Lauren Ward",
|
name: "Lauren Ward",
|
||||||
role: "Principal",
|
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",
|
imageAlt: "professional woman business executive",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "expert",
|
id: "expert",
|
||||||
name: "Strategic Advisory",
|
name: "Strategic Advisory",
|
||||||
role: "Compliance & Distribution Expert",
|
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",
|
imageAlt: "business professional expertise portrait",
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -139,7 +139,7 @@ export default function ServicesPage() {
|
|||||||
value: "30+",
|
value: "30+",
|
||||||
title: "Years Industry Experience",
|
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.",
|
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",
|
imageAlt: "years of experience career professional",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -147,7 +147,7 @@ export default function ServicesPage() {
|
|||||||
value: "360°",
|
value: "360°",
|
||||||
title: "Integrated Approach",
|
title: "Integrated Approach",
|
||||||
description: "End-to-end service model from brand conception through consumer execution. No gaps, no third parties—we own your success.",
|
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",
|
imageAlt: "complete service solution package",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -155,7 +155,7 @@ export default function ServicesPage() {
|
|||||||
value: "Multi-Market",
|
value: "Multi-Market",
|
||||||
title: "Extensive Market Coverage",
|
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.",
|
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",
|
imageAlt: "global market coverage network",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -163,7 +163,7 @@ export default function ServicesPage() {
|
|||||||
value: "Custom",
|
value: "Custom",
|
||||||
title: "Tailored Programs",
|
title: "Tailored Programs",
|
||||||
description: "Every brand is unique. We develop customized strategies aligned to your specific goals, target audience, and market position.",
|
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",
|
imageAlt: "client focused customer service",
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user