Merge version_4 into main #5

Merged
bender merged 2 commits from version_4 into main 2026-02-13 16:45:58 +00:00
2 changed files with 22 additions and 45 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

@@ -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>
);
}
}