Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-05 01:31:42 +00:00
2 changed files with 39 additions and 42 deletions

View File

@@ -1,51 +1,20 @@
import type { Metadata } from "next";
import { Montserrat } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "The Sales Lab | Premium Sales Training by Renee Dee", description: "Transform your sales career with The Sales Lab's exclusive, boutique-level training. 10 seats only. $7,500 for the 3-month intensive. Master pipeline, closing, and premium pricing.", keywords: "sales training, premium coaching, sales intensive, pipeline mastery, Renee Dee, sales professionals", metadataBase: new URL("https://thesaleslab.com"),
alternates: {
canonical: "https://thesaleslab.com"},
openGraph: {
title: "Your Biggest Sales Year Starts Here | The Sales Lab", description: "An intensive, boutique-level sales training program for professionals ready to transform their pipeline and build unstoppable income.", url: "https://thesaleslab.com", siteName: "The Sales Lab", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/businessman-smiling-airport-terminal_107420-85119.jpg", alt: "The Sales Lab - Premium Sales Training"},
],
},
twitter: {
card: "summary_large_image", title: "The Sales Lab | Premium Sales Training", description: "Transform your sales career. 10 seats only. Join Renee Dee for an intensive program designed for serious professionals.", images: ["http://img.b2bpic.net/free-photo/businessman-smiling-airport-terminal_107420-85119.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "The Sales Lab", description: "An intensive, boutique-level sales training program designed exclusively for professionals ready to transform their pipeline, close with certainty, and build unstoppable income."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -10,7 +10,7 @@ import TeamCardEleven from "@/components/sections/team/TeamCardEleven";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { AlertCircle, BarChart3, Target, TrendingDown, Zap } from "lucide-react";
import { AlertCircle, BarChart3, Target, TrendingDown, Zap, ArrowRight } from "lucide-react";
export default function LandingPage() {
return (
@@ -202,6 +202,35 @@ export default function LandingPage() {
/>
</div>
<div id="cta" data-section="cta" className="relative py-20 md:py-32 px-4 bg-gradient-to-br from-slate-900 via-slate-800 to-slate-900">
<div className="max-w-4xl mx-auto text-center">
<h2 className="text-4xl md:text-5xl lg:text-6xl font-bold text-white mb-6 leading-tight">
Ready to Transform Your Sales Game?
</h2>
<p className="text-lg md:text-xl text-slate-200 mb-10 max-w-2xl mx-auto leading-relaxed">
10 seats. One cohort. Your breakthrough waiting. Join elite sales professionals who refuse to settle for mediocre results. Your biggest income year starts with one decision.
</p>
<div className="flex flex-col sm:flex-row gap-4 justify-center items-center">
<a
href="mailto:Renee@hauscollective.com?subject=Reserve%20My%20Seat%20at%20The%20Sales%20Lab"
className="inline-flex items-center justify-center gap-2 px-8 py-4 bg-gradient-to-r from-blue-500 to-blue-600 hover:from-blue-600 hover:to-blue-700 text-white text-lg font-semibold rounded-lg shadow-lg hover:shadow-xl transition-all duration-300 transform hover:scale-105"
>
Reserve Your Seat Now
<ArrowRight className="w-5 h-5" />
</a>
<a
href="tel:(480)330-3737"
className="inline-flex items-center justify-center gap-2 px-8 py-4 border-2 border-slate-300 hover:border-white text-slate-200 hover:text-white text-lg font-semibold rounded-lg transition-all duration-300"
>
Call (480) 330-3737
</a>
</div>
<p className="text-sm text-slate-400 mt-8">
Limited spots available. Only 10 participants per session to ensure personalized coaching and transformational results.
</p>
</div>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-vector/luxurious-abstract-dark-black-background-with-golden-line-design_1017-55357.jpg"
@@ -218,7 +247,7 @@ export default function LandingPage() {
title: "Connect", items: [
{ label: "Email", href: "mailto:Renee@hauscollective.com" },
{ label: "Phone", href: "tel:(480)330-3737" },
{ label: "Reserve Seat", href: "#pricing" },
{ label: "Reserve Seat", href: "#cta" },
],
},
{
@@ -235,4 +264,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}