7 Commits

Author SHA1 Message Date
5a2edfa967 Update src/app/page.tsx 2026-02-13 16:45:54 +00:00
43fa4f2c30 Update src/app/layout.tsx 2026-02-13 16:45:53 +00:00
a849d66d05 Merge version_3 into main
Merge version_3 into main
2026-02-13 16:41:10 +00:00
555cdc9ba2 Update src/app/page.tsx 2026-02-13 16:41:06 +00:00
24995515a4 Merge version_2 into main
Merge version_2 into main
2026-02-13 16:32:08 +00:00
c72cf78baf Merge version_2 into main
Merge version_2 into main
2026-02-13 16:29:25 +00:00
152f11bbc7 Merge version_2 into main
Merge version_2 into main
2026-02-13 16:26:40 +00:00
2 changed files with 23 additions and 46 deletions

View File

@@ -1,47 +1,25 @@
import type { Metadata } from "next";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
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: "McLaren Labs | Growth Consultancy for Startups", description: "We operate in the shadows so you can shine in the light. Growth partner for ambitious startups ready to scale.", keywords: ["growth consultancy", "startup growth", "scaling", "strategy", "business growth"],
robots: {
index: true,
follow: true,
},
openGraph: {
title: "McLaren Labs | Growth Consultancy for Startups", description: "We operate in the shadows so you can shine in the light. Growth partner for ambitious startups ready to scale.", siteName: "McLaren Labs", type: "website"
},
twitter: {
card: "summary_large_image", title: "McLaren Labs | Growth Consultancy for Startups", description: "We operate in the shadows so you can shine in the light."
},
};
title: "McLaren Labs", description: "Growth partner for startups ready to scale"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${poppins.variable}`}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1260,7 +1238,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -41,7 +41,7 @@ export default function HomePage() {
</div>
<div id="hero" data-section="hero" className="bg-white">
<div className="text-white">
<div className="text-black">
<HeroBillboardRotatedCarousel
title="We operate in the shadows so you can shine in the light."
description="McLaren Labs is the growth partner startups call when they're ready to scale."
@@ -75,7 +75,7 @@ export default function HomePage() {
</div>
</div>
<div id="about" data-section="about">
<div id="about" data-section="about" className="bg-white">
<MetricSplitMediaAbout
tag="Our Approach"
title="Strategy. Systems. Scale."
@@ -92,7 +92,7 @@ export default function HomePage() {
/>
</div>
<div id="case-studies" data-section="case-studies" className="bg-background-accent">
<div id="case-studies" data-section="case-studies" className="bg-white">
<FeatureCardTwentyFour
title="Playground for Profit"
description="Real founders. Real challenges. Real solutions."
@@ -112,11 +112,11 @@ export default function HomePage() {
]}
animationType="none"
textboxLayout="default"
useInvertedBackground={true}
useInvertedBackground={false}
/>
</div>
<div id="testimonials" data-section="testimonials">
<div id="testimonials" data-section="testimonials" className="bg-white">
<TestimonialCardTen
title="What Our Partners Say"
description="Hear directly from founders and CEOs we've worked with"
@@ -136,7 +136,7 @@ export default function HomePage() {
/>
</div>
<div id="team" data-section="team">
<div id="team" data-section="team" className="bg-white">
<TeamCardTwo
title="Meet the Team"
description="World-class operators and growth strategists"
@@ -174,7 +174,7 @@ export default function HomePage() {
/>
</div>
<div id="blog" data-section="blog">
<div id="blog" data-section="blog" className="bg-white">
<BlogCardOne
title="Latest Insights"
description="Stay updated with our latest thoughts on growth, strategy, and scaling"
@@ -196,20 +196,20 @@ export default function HomePage() {
/>
</div>
<div id="contact" data-section="contact">
<div id="contact" data-section="contact" className="bg-white">
<ContactCenter
tag="Next Step"
title="Ready to scale?"
description="We only take on a handful of partners at a time. If you're serious about growth, let's talk."
background={{ variant: "plain" }}
useInvertedBackground={true}
useInvertedBackground={false}
inputPlaceholder="your@email.com"
buttonText="Start Conversation"
termsText="We respect your privacy. No spam, ever."
/>
</div>
<div id="footer" data-section="footer">
<div id="footer" data-section="footer" className="bg-white">
<FooterLogoEmphasis
logoText="McLaren Labs"
columns={[
@@ -236,4 +236,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}