Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 01:37:18 +00:00
2 changed files with 13 additions and 31 deletions

View File

@@ -1,45 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Content Collective | Strategic Storytelling for Enterprise Brands", description: "Premium content agency delivering strategic storytelling and production for C-suite executives and marketing leaders seeking measurable business growth.", keywords: "content agency, strategic storytelling, content production, brand narrative, enterprise content strategy, B2B content, digital marketing", openGraph: {
title: "Content Collective | Strategic Storytelling for Enterprise Brands", description: "Transform your brand narrative. Strategic content production for ambitious enterprises.", siteName: "Content Collective", type: "website"},
twitter: {
card: "summary_large_image", title: "Content Collective | Strategic Storytelling for Enterprise Brands", description: "Premium content strategy and production for market-leading brands"},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -53,7 +53,7 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-vector/professional-dashboard-user-panel_23-2148372586.jpg?_wi=1"
imageAlt="Content agency dashboard and strategy tools"
buttons={[
{ text: "Start Your Project", href: "contact" },
{ text: "Get Your Content Strategy", href: "contact" },
{ text: "Explore Our Work", href: "products" }
]}
buttonAnimation="slide-up"