Merge version_4 into main

Merge version_4 into main
This commit was merged in pull request #5.
This commit is contained in:
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 type { Metadata } from "next";
import { Libre_Baskerville } from "next/font/google"; import { Poppins } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import "./styles/variables.css";
import Tag from "@/tag/Tag"; import "./styles/base.css";
const libreBaskerville = Libre_Baskerville({ const poppins = Poppins({
variable: "--font-libre-baskerville", subsets: ["latin"], variable: "--font-poppins", subsets: ["latin"],
weight: ["400", "700"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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"], title: "McLaren Labs", description: "Growth partner for startups ready to scale"};
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."
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${poppins.variable}`}>{children}
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1260,7 +1238,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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