Merge version_2 into main #3

Merged
bender merged 2 commits from version_2 into main 2026-03-05 04:44:25 +00:00
2 changed files with 12 additions and 70 deletions

View File

@@ -1,77 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } from "next/font/google";
import { Lexend } 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 roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
const lexend = Lexend({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Creatorsmafia - Empower Your Creative Journey",
description: "Join Creatorsmafia, the premier platform for creators. Collaborate, monetize, and grow your creative empire with advanced tools and a thriving community.",
keywords: "creator platform, monetization tools, content creation, collaboration, digital creators, creator community",
metadataBase: new URL("https://creatorsmafia.com"),
alternates: {
canonical: "https://creatorsmafia.com",
},
openGraph: {
title: "Creatorsmafia - Empower Your Creative Journey",
description: "Unite, collaborate, and grow. Join thousands of creators building their empires.",
url: "https://creatorsmafia.com",
siteName: "Creatorsmafia",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVkqbMJQs227ysrI3tkqPUmNv6/a-modern-professional-creator-platform-d-1772685461988-966d383d.png",
alt: "Creatorsmafia Platform",
},
],
},
twitter: {
card: "summary_large_image",
title: "Creatorsmafia - Empower Your Creative Journey",
description: "Unite, collaborate, and grow on the premier creator platform.",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVkqbMJQs227ysrI3tkqPUmNv6/a-modern-professional-creator-platform-d-1772685461988-966d383d.png",
],
},
robots: {
index: true,
follow: true,
},
};
title: "Creatorsmafia", description: "Unite, collaborate, and grow with Creatorsmafia - the premier platform for creators."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={lexend.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1439,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -22,6 +22,9 @@ export default function HomePage() {
];
const testimonials = [
{
id: "4", name: "Priya Patel", handle: "@priyavlogs", testimonial: "My first month on Creatorsmafia, I earned more through their monetization suite than I had in the previous year. This is a game-changer for independent creators.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVkqbMJQs227ysrI3tkqPUmNv6/professional-headshot-of-a-video-content-1772685460277-d75c29b0.png", imageAlt: "Priya Patel"},
{
id: "1", name: "Alex Rivera", handle: "@alexcreates", testimonial: "Creatorsmafia transformed my creative journey. The monetization tools and community support helped me grow from 10K to 500K followers in just 8 months.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVkqbMJQs227ysrI3tkqPUmNv6/professional-headshot-of-a-diverse-young-1772685461354-9ca27530.png", imageAlt: "Alex Rivera"},
@@ -31,9 +34,6 @@ export default function HomePage() {
{
id: "3", name: "Marcus Johnson", handle: "@marcusmusic", testimonial: "The analytics dashboard gives me insights I never had before. I can now make data-driven decisions about my content and collaborations. Highly recommended!", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVkqbMJQs227ysrI3tkqPUmNv6/professional-headshot-of-a-music-produce-1772685459899-7d478846.png", imageAlt: "Marcus Johnson"},
{
id: "4", name: "Priya Patel", handle: "@priyavlogs", testimonial: "My first month on Creatorsmafia, I earned more through their monetization suite than I had in the previous year. This is a game-changer for independent creators.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVkqbMJQs227ysrI3tkqPUmNv6/professional-headshot-of-a-video-content-1772685460277-d75c29b0.png", imageAlt: "Priya Patel"},
{
id: "5", name: "James Wilson", handle: "@jamesvideo", testimonial: "The creator store feature allowed me to launch my own merchandise line without any technical knowledge. Revenue increased 300% within three months.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVkqbMJQs227ysrI3tkqPUmNv6/professional-headshot-of-a-successful-en-1772685460332-693b840a.png", imageAlt: "James Wilson"},
@@ -200,4 +200,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}