Merge version_1 into main #1
@@ -89,7 +89,7 @@ const CampaignsPage = () => {
|
||||
price: "$1,000-3,500",
|
||||
rating: 5,
|
||||
reviewCount: "234",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-office-with-photo-cameras-computer_329181-12092.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-office-with-photo-cameras-computer_329181-12092.jpg?_wi=2",
|
||||
imageAlt: "Fashion brand collaboration campaign",
|
||||
},
|
||||
{
|
||||
@@ -99,7 +99,7 @@ const CampaignsPage = () => {
|
||||
price: "$1,500-4,000",
|
||||
rating: 5,
|
||||
reviewCount: "189",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-mystery-box_23-2149631428.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-mystery-box_23-2149631428.jpg?_wi=2",
|
||||
imageAlt: "Technology product review campaign",
|
||||
},
|
||||
{
|
||||
@@ -109,7 +109,7 @@ const CampaignsPage = () => {
|
||||
price: "$800-2,800",
|
||||
rating: 5,
|
||||
reviewCount: "312",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blogger-recording-video-with-make-up-accessories_23-2148538934.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blogger-recording-video-with-make-up-accessories_23-2148538934.jpg?_wi=2",
|
||||
imageAlt: "Beauty product promotion campaign",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -81,7 +81,7 @@ const DashboardPage = () => {
|
||||
tag="Dashboard Features"
|
||||
tagIcon={Users}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/dashboard-user-panel-tempalte_23-2148379462.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/dashboard-user-panel-tempalte_23-2148379462.jpg?_wi=2"
|
||||
imageAlt="Creator dashboard interface"
|
||||
buttons={[{ text: "Access Dashboard", href: "https://dashboard.trybuzzer.com" }]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -102,7 +102,7 @@ const DashboardPage = () => {
|
||||
title: "Profile Management",
|
||||
description: "Manage your public profile, update portfolio, adjust visibility settings, and optimize your creator brand to attract top brands.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/modern-online-registration-compositio_23-2147993866.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/modern-online-registration-compositio_23-2147993866.jpg?_wi=2",
|
||||
},
|
||||
items: [
|
||||
{ icon: User, text: "Edit profile details" },
|
||||
@@ -116,7 +116,7 @@ const DashboardPage = () => {
|
||||
title: "Portfolio & Analytics",
|
||||
description: "Track portfolio views, engagement metrics, and audience insights. See how brands interact with your content and optimize for better results.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-rugby-game-youtube-thumbnail_23-2150224399.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-rugby-game-youtube-thumbnail_23-2150224399.jpg?_wi=2",
|
||||
},
|
||||
items: [
|
||||
{ icon: Video, text: "View analytics" },
|
||||
@@ -130,7 +130,7 @@ const DashboardPage = () => {
|
||||
title: "Submission Tracker",
|
||||
description: "Monitor all your campaign submissions in real-time. Track status, receive feedback from brands, and manage your active projects efficiently.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-working-with-laptop_23-2149636255.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-working-with-laptop_23-2149636255.jpg?_wi=2",
|
||||
},
|
||||
items: [
|
||||
{ icon: Search, text: "View submissions" },
|
||||
@@ -144,7 +144,7 @@ const DashboardPage = () => {
|
||||
title: "Earnings & Payments",
|
||||
description: "View detailed earnings reports, payment history, and withdrawal options. Get paid reliably and track your income growth over time.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/notepad-reminder-remember-list-planning-concept_53876-123731.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/notepad-reminder-remember-list-planning-concept_53876-123731.jpg?_wi=2",
|
||||
},
|
||||
items: [
|
||||
{ icon: Send, text: "View earnings" },
|
||||
|
||||
@@ -1,28 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Buzzer - Connect Clippers with Brands",
|
||||
description: "The creator marketplace connecting clippers with influencers and brands. Build your portfolio, find campaigns, and earn money from your content.",
|
||||
keywords: "creator marketplace, content creators, influencer collaborations, brand campaigns, video clippers, content creation platform",
|
||||
metadataBase: new URL("https://trybuzzer.com"),
|
||||
alternates: {
|
||||
canonical: "https://trybuzzer.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Buzzer - Creator Marketplace",
|
||||
description: "Connect clippers with brands and influencers. Build your creator career on Buzzer.",
|
||||
url: "https://trybuzzer.com",
|
||||
siteName: "Buzzer",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-vector/dashboard-user-panel-tempalte_23-2148379462.jpg",
|
||||
alt: "Buzzer creator marketplace platform",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Buzzer - Creator Marketplace",
|
||||
description: "Connect clippers with brands and influencers. Build your creator career.",
|
||||
images: ["http://img.b2bpic.net/free-vector/dashboard-user-panel-tempalte_23-2148379462.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -31,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -94,7 +94,7 @@ const HomePage = () => {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-tempalte_23-2148379462.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-tempalte_23-2148379462.jpg?_wi=1",
|
||||
imageAlt: "Buzzer marketplace platform dashboard",
|
||||
},
|
||||
{
|
||||
@@ -138,7 +138,7 @@ const HomePage = () => {
|
||||
title: "Create Your Profile",
|
||||
description: "Set up your creator profile, showcase your skills, and let brands know who you are. Add your portfolio, bio, and social links.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/modern-online-registration-compositio_23-2147993866.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/modern-online-registration-compositio_23-2147993866.jpg?_wi=1",
|
||||
},
|
||||
items: [
|
||||
{ icon: User, text: "Complete profile setup" },
|
||||
@@ -152,7 +152,7 @@ const HomePage = () => {
|
||||
title: "Upload Your Best Clips",
|
||||
description: "Build your portfolio by uploading video clips and content samples. Showcase the quality and style of your work to brands.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-rugby-game-youtube-thumbnail_23-2150224399.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-rugby-game-youtube-thumbnail_23-2150224399.jpg?_wi=1",
|
||||
},
|
||||
items: [
|
||||
{ icon: Video, text: "Upload clips easily" },
|
||||
@@ -166,7 +166,7 @@ const HomePage = () => {
|
||||
title: "Browse Available Campaigns",
|
||||
description: "Explore campaigns from brands looking for creators. Filter by category, budget, and requirements to find perfect matches.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-working-with-laptop_23-2149636255.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-working-with-laptop_23-2149636255.jpg?_wi=1",
|
||||
},
|
||||
items: [
|
||||
{ icon: Search, text: "Filter campaigns" },
|
||||
@@ -180,7 +180,7 @@ const HomePage = () => {
|
||||
title: "Submit & Collaborate",
|
||||
description: "Submit your pitch, get hired, and start collaborating with brands. Receive feedback, payments, and build your creator reputation.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/notepad-reminder-remember-list-planning-concept_53876-123731.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/notepad-reminder-remember-list-planning-concept_53876-123731.jpg?_wi=1",
|
||||
},
|
||||
items: [
|
||||
{ icon: Send, text: "Submit proposals" },
|
||||
@@ -211,7 +211,7 @@ const HomePage = () => {
|
||||
price: "$500-2,000",
|
||||
rating: 5,
|
||||
reviewCount: "145",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-office-with-photo-cameras-computer_329181-12092.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-office-with-photo-cameras-computer_329181-12092.jpg?_wi=1",
|
||||
imageAlt: "Fashion brand collaboration campaign",
|
||||
},
|
||||
{
|
||||
@@ -221,7 +221,7 @@ const HomePage = () => {
|
||||
price: "$800-3,000",
|
||||
rating: 5,
|
||||
reviewCount: "89",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-mystery-box_23-2149631428.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-mystery-box_23-2149631428.jpg?_wi=1",
|
||||
imageAlt: "Technology product review campaign",
|
||||
},
|
||||
{
|
||||
@@ -231,7 +231,7 @@ const HomePage = () => {
|
||||
price: "$600-2,500",
|
||||
rating: 5,
|
||||
reviewCount: "234",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blogger-recording-video-with-make-up-accessories_23-2148538934.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blogger-recording-video-with-make-up-accessories_23-2148538934.jpg?_wi=1",
|
||||
imageAlt: "Beauty product promotion campaign",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user