Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3deac473de | |||
| af09a99cb0 | |||
| 60fb6a2fa4 | |||
| 16650c3f9e | |||
| 4e2aa6ec19 |
@@ -1,43 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Mulish } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const mulish = Mulish({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-mulish", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Professional UGC Content & Creator Portfolio", description: "Discover authentic, high-quality user-generated content from skilled creators. Connect with brands and drive conversions through authentic storytelling.", keywords: "UGC, user-generated content, creators, authentic content, product marketing, social media", robots: {
|
title: "UGC - Professional User-Generated Content", description: "Connect with skilled creators and transform your marketing strategy with authentic, high-quality UGC content."};
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Professional UGC Content & Creator Portfolio", description: "Discover authentic, high-quality user-generated content from skilled creators. Connect with brands and drive conversions through authentic storytelling.", siteName: "UGC", type: "website"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Professional UGC Content & Creator Portfolio", description: "Discover authentic, high-quality user-generated content from skilled creators."},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1405,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ export default function LandingPage() {
|
|||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<MediaAbout
|
<MediaAbout
|
||||||
title="Authentic Content Creation That Drives Results"
|
title="Authentic Content Creation That Drives Results"
|
||||||
description="We connect brands with talented creators who produce compelling, authentic UGC content. Our network spans diverse niches and styles, ensuring your brand message resonates with real audiences."
|
description="We connect brands with talented creators who produce compelling, authentic UGC content. Our platform delivers average 40% boost in engagement, 3x faster content delivery, and 500+ verified creators across all niches. Our network spans diverse styles and industries, ensuring your brand message resonates with real audiences and drives measurable conversion results."
|
||||||
tag="About Our Platform"
|
tag="About Our Platform"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/coworkers-office-with-photo-cameras-computer_329181-12078.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/coworkers-office-with-photo-cameras-computer_329181-12078.jpg"
|
||||||
imageAlt="UGC creators collaborating"
|
imageAlt="UGC creators collaborating"
|
||||||
|
|||||||
Reference in New Issue
Block a user