Merge version_2 into main #4
@@ -1,49 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "6TO7 Profit Partners | Fortune 500 Consulting for Growing Businesses", description: "Transform your profitability with Fortune 500 expertise. Hands-on consulting for ambitious business owners generating $100K-$1M monthly revenue. Quick wins in 30 days.", keywords: "management consulting, profit optimization, business growth, pricing strategy, small business consulting, Latino entrepreneurs", metadataBase: new URL("https://6to7partners.com"),
|
||||
alternates: {
|
||||
canonical: "https://6to7partners.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "6TO7 Profit Partners | Fortune 500 Consulting for Growing Businesses", description: "Transform your profitability with Fortune 500 expertise. Hands-on consulting for ambitious business owners. Quick wins in 30 days.", url: "https://6to7partners.com", siteName: "6TO7 Profit Partners", type: "website"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "6TO7 Profit Partners | Fortune 500 Consulting", description: "Transform profitability with Fortune 500 expertise. Hands-on consulting for ambitious business owners."
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "6TO7 Profit Partners - Fortune 500 Expertise for Ambitious Business Owners", description: "Transform your profit margins with Fortune 500 strategies. Optimize pricing, operations, and growth."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -58,7 +58,7 @@ export default function LandingPage() {
|
||||
<FeatureCardTen
|
||||
tag="Our Framework"
|
||||
title="The 5 Pillars of 6-to-7 Figure Growth"
|
||||
description="A proven methodology adapted from Fortune 500 strategies, tailored for ambitious business owners ready to scale. We optimize ALL profit levers simultaneously, delivering quick wins in 30 days."
|
||||
description="Clients see avg. $45K profit recovery in 90 days. Our proven methodology adapted from Fortune 500 strategies is tailored for ambitious business owners ready to scale. We optimize ALL profit levers simultaneously, delivering quick wins in 30 days."
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Expand", description: "Grow your customer base through strategic acquisition channels. We identify high-ROI marketing channels specific to your industry and implement proven acquisition systems.", media: { imageSrc: "/placeholders/placeholder1.webp?_wi=1" },
|
||||
|
||||
Reference in New Issue
Block a user