diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 30490b8..d3d3139 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,71 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "SUPER STAN - Create, Share, Earn | Multi-Function Content Platform", - description: "Join creators worldwide on SUPER STAN. Upload videos, share stories, earn money from views, and connect with fans. Advanced copyright protection and transparent monetization.", - keywords: "content platform, video sharing, creator earnings, copyright protection, social media, video monetization, creator tools, Instagram alternative, YouTube alternative", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "SUPER STAN - Create, Share, Earn", - description: "The all-in-one platform for content creators. Earn $1 per 1K long video views and $0.2 per 1K short video views.", - siteName: "SUPER STAN", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZ3oNAZFDr4KgviWFEqQ0mcMZ8/a-vibrant-modern-content-creation-platfo-1772786569819-dd96906d.png", - alt: "SUPER STAN platform interface", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "SUPER STAN - Create, Share, Earn", - description: "Multi-function content platform for creators. Stories, videos, messaging, and direct monetization with copyright protection.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZ3oNAZFDr4KgviWFEqQ0mcMZ8/a-vibrant-modern-content-creation-platfo-1772786569819-dd96906d.png", - ], - }, -}; + title: "SUPER STAN - Content Creator Platform", description: "Create, share, and earn with SUPER STAN. The all-in-one platform for content creators with transparent monetization."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}