5 Commits

Author SHA1 Message Date
5f03d8e175 Update src/app/page.tsx 2026-03-04 03:51:41 +00:00
71b3008452 Update src/app/layout.tsx 2026-03-04 03:51:41 +00:00
aa6b1508fe Merge version_1 into main
Merge version_1 into main
2026-03-04 03:50:31 +00:00
f5cce1203f Merge version_1 into main
Merge version_1 into main
2026-03-04 03:49:20 +00:00
8ed6ad891a Merge version_1 into main
Merge version_1 into main
2026-03-04 03:48:07 +00:00
2 changed files with 7 additions and 33 deletions

View File

@@ -1,45 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Strategic Operations & Brand Leader | Portfolio", description: "Strategic operations leader with expertise in scaling agencies, brand positioning, and B2B growth. View my professional portfolio and case studies.", keywords: "operations leader, strategy consultant, agency operations, brand strategy, B2B growth", openGraph: {
title: "Strategic Operations & Brand Leader", description: "Transforming complex operations into scalable systems. Strategic expertise in agency growth and brand building.", siteName: "Professional Portfolio", type: "website"},
twitter: {
card: "summary_large_image", title: "Strategic Operations & Brand Leader", description: "Building scalable systems and driving strategic growth."},
};
title: "Professional Portfolio", description: "Strategic Leader & Operations Architect - Building scalable systems, driving growth, and delivering excellence."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -76,7 +76,7 @@ export default function LandingPage() {
<TextSplitAbout
title="Professional Journey"
description={[
"As Strategy & Operations Lead at Maneuver Studios, I transformed the agency from concept to consistent 5-figure MRR by building operational systems, project workflows, and delivery pipelines that enabled scalable growth across 10+ concurrent projects.", "My expertise spans brand positioning, content strategy, and B2B outreach—demonstrated through strategic consulting roles at WebVortex, WebWorkshop, and Sequorr, where I designed scalable frameworks, developed customer acquisition strategies, and increased engagement metrics by 3x through data-driven content optimization.", "I thrive at the intersection of strategy and execution, turning complex challenges into streamlined systems that drive measurable business results."
"As Strategy & Operations Lead at Maneuver Studios, I transformed the agency from concept to consistent 5-figure MRR by building operational systems, project workflows, and delivery pipelines that enabled scalable growth across 10+ concurrent projects.", "My expertise spans brand positioning, content strategy, and B2B outreach—demonstrated through strategic consulting roles at WebVortex, WebWorkshop, and Sequorr, where I designed scalable frameworks, developed customer acquisition strategies, and increased engagement metrics by 3x through data-driven content optimization.", "I thrive at the intersection of strategy and execution, delivering 3x average engagement growth and $500K+ in client revenue—turning complex challenges into streamlined systems that drive measurable business results."
]}
showBorder={true}
useInvertedBackground={false}