Merge version_1 into main #1
@@ -24,28 +24,28 @@ export default function EventsPage() {
|
||||
id: "cannes-2024",
|
||||
title: "Cannes Film Festival 2024",
|
||||
description: "Exclusive red carpet coverage from one of the world's most prestigious film festivals, featuring interviews and premiere highlights.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-dynamic-cinematic-photograph-of-a-movi-1773445504116-592f5270.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-dynamic-cinematic-photograph-of-a-movi-1773445504116-592f5270.png?_wi=4",
|
||||
imageAlt: "Movie premiere red carpet event coverage",
|
||||
},
|
||||
{
|
||||
id: "venice-premiere",
|
||||
title: "Venice Film Festival Premiere",
|
||||
description: "Coverage of the Venice Film Festival premiere event, showcasing elegant attendees and cinematic moments from the prestigious showcase.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-sophisticated-photograph-of-a-film-ind-1773445503150-74cd983d.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-sophisticated-photograph-of-a-film-ind-1773445503150-74cd983d.png?_wi=4",
|
||||
imageAlt: "Film studio event photography",
|
||||
},
|
||||
{
|
||||
id: "sundance-screening",
|
||||
title: "Sundance Film Festival Screening",
|
||||
description: "Behind-the-scenes access to Sundance Film Festival screenings, panel discussions, and industry networking events.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-cinematic-photograph-of-a-movie-premie-1773445502749-78278c6c.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-cinematic-photograph-of-a-movie-premie-1773445502749-78278c6c.png?_wi=3",
|
||||
imageAlt: "Entertainment news coverage",
|
||||
},
|
||||
{
|
||||
id: "studio-premiere",
|
||||
title: "Major Studio Premiere Night",
|
||||
description: "Premium coverage of an exclusive studio premiere event featuring a major blockbuster release with red carpet and VIP access.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-luxurious-photograph-of-a-film-studio--1773445502930-a0a9c8c8.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-luxurious-photograph-of-a-film-studio--1773445502930-a0a9c8c8.png?_wi=3",
|
||||
imageAlt: "Movie review and reaction content",
|
||||
},
|
||||
];
|
||||
|
||||
@@ -1,24 +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";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Abdullah Albalool | Film & TV Content Creator",
|
||||
description: "Premium entertainment content creator covering movie premieres, studio events, and entertainment news across Instagram, TikTok, and YouTube.",
|
||||
keywords: "film content creator, TV coverage, movie premieres, entertainment journalist, content creator portfolio, red carpet coverage",
|
||||
metadataBase: new URL("https://abdullahalbaloool.com"),
|
||||
alternates: {
|
||||
canonical: "https://abdullahalbaloool.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Abdullah Albalool - Film & TV Content Creator",
|
||||
description: "Exclusive entertainment coverage and film industry insights from a professional content creator.",
|
||||
url: "https://abdullahalbaloool.com",
|
||||
siteName: "Abdullah Albalool",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://abdullahalbaloool.com/og-image.jpg",
|
||||
alt: "Abdullah Albalool film content creator",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Abdullah Albalool - Film & TV Content Creator",
|
||||
description: "Premium entertainment coverage, movie reviews, and industry insights.",
|
||||
images: ["https://abdullahalbaloool.com/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${openSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -116,28 +116,28 @@ export default function HomePage() {
|
||||
id: "premiere-coverage",
|
||||
title: "Premiere Coverage",
|
||||
description: "Exclusive red carpet coverage and premiere event photography from major film releases and industry events.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-dynamic-cinematic-photograph-of-a-movi-1773445504116-592f5270.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-dynamic-cinematic-photograph-of-a-movi-1773445504116-592f5270.png?_wi=1",
|
||||
imageAlt: "Movie premiere red carpet event coverage",
|
||||
},
|
||||
{
|
||||
id: "studio-events",
|
||||
title: "Studio Events",
|
||||
description: "Professional documentation of studio screenings, production announcements, and entertainment industry networking events.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-sophisticated-photograph-of-a-film-ind-1773445503150-74cd983d.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-sophisticated-photograph-of-a-film-ind-1773445503150-74cd983d.png?_wi=1",
|
||||
imageAlt: "Film studio event photography",
|
||||
},
|
||||
{
|
||||
id: "entertainment-news",
|
||||
title: "Entertainment News",
|
||||
description: "Timely coverage of movie announcements, TV releases, industry news, and entertainment industry updates.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-cinematic-photograph-of-a-movie-premie-1773445502749-78278c6c.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-cinematic-photograph-of-a-movie-premie-1773445502749-78278c6c.png?_wi=1",
|
||||
imageAlt: "Entertainment news coverage",
|
||||
},
|
||||
{
|
||||
id: "reviews-reactions",
|
||||
title: "Reviews & Reactions",
|
||||
description: "In-depth movie reviews, TV series analysis, and authentic creator reactions to new entertainment releases.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-luxurious-photograph-of-a-film-studio--1773445502930-a0a9c8c8.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-luxurious-photograph-of-a-film-studio--1773445502930-a0a9c8c8.png?_wi=1",
|
||||
imageAlt: "Movie review and reaction content",
|
||||
},
|
||||
]}
|
||||
@@ -241,7 +241,7 @@ export default function HomePage() {
|
||||
category: "Featured Interview",
|
||||
title: "Inside the Mind of a Film & Entertainment Content Creator",
|
||||
excerpt: "An exclusive interview discussing my approach to covering premieres, industry events, and creating authentic entertainment content.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-magazine-cover-or-publica-1773445503478-bf2fd69c.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-magazine-cover-or-publica-1773445503478-bf2fd69c.png?_wi=1",
|
||||
imageAlt: "Press feature interview article",
|
||||
authorName: "Entertainment Weekly",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-magazine-cover-or-publica-1773445503478-bf2fd69c.png",
|
||||
@@ -252,7 +252,7 @@ export default function HomePage() {
|
||||
category: "Industry Spotlight",
|
||||
title: "How Creator Partnerships Are Changing Film Promotion",
|
||||
excerpt: "Exploring the role of independent content creators in modern movie marketing and studio collaborations.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-entertainment-news-public-1773445503893-ef7f2fb5.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-entertainment-news-public-1773445503893-ef7f2fb5.png?_wi=1",
|
||||
imageAlt: "Industry news feature article",
|
||||
authorName: "Variety",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-entertainment-news-public-1773445503893-ef7f2fb5.png",
|
||||
@@ -263,7 +263,7 @@ export default function HomePage() {
|
||||
category: "Studio Feature",
|
||||
title: "Content Creator Spotlight: Bringing Authenticity to Entertainment Coverage",
|
||||
excerpt: "Featured as a leading independent voice in authentic entertainment journalism and creator partnerships.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-film-and-entertainment-pu-1773445503498-36250997.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-film-and-entertainment-pu-1773445503498-36250997.png?_wi=1",
|
||||
imageAlt: "Creator spotlight feature",
|
||||
authorName: "The Hollywood Reporter",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-film-and-entertainment-pu-1773445503498-36250997.png",
|
||||
@@ -300,7 +300,7 @@ export default function HomePage() {
|
||||
quote: "Abdullah delivers exceptional coverage and authentic audience engagement. His content reaches exactly the demographic we're targeting.",
|
||||
tag: "Studio Partnership",
|
||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-magazine-cover-or-publica-1773445503478-bf2fd69c.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-dynamic-cinematic-photograph-of-a-movi-1773445504116-592f5270.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-dynamic-cinematic-photograph-of-a-movi-1773445504116-592f5270.png?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "testimonial-2",
|
||||
@@ -310,7 +310,7 @@ export default function HomePage() {
|
||||
quote: "The quality and consistency of content coverage is outstanding. Abdullah's audience trusts his opinions, which translates to real engagement.",
|
||||
tag: "Campaign Success",
|
||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-entertainment-news-public-1773445503893-ef7f2fb5.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-sophisticated-photograph-of-a-film-ind-1773445503150-74cd983d.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-sophisticated-photograph-of-a-film-ind-1773445503150-74cd983d.png?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "testimonial-3",
|
||||
@@ -320,7 +320,7 @@ export default function HomePage() {
|
||||
quote: "Working with Abdullah is seamless. His professionalism and eye for premium content make him a valuable partner for any campaign.",
|
||||
tag: "Brand Collaboration",
|
||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-film-and-entertainment-pu-1773445503498-36250997.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-cinematic-photograph-of-a-movie-premie-1773445502749-78278c6c.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-cinematic-photograph-of-a-movie-premie-1773445502749-78278c6c.png?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "testimonial-4",
|
||||
@@ -330,7 +330,7 @@ export default function HomePage() {
|
||||
quote: "His ability to create compelling entertainment narratives while maintaining authenticity is rare and valuable in this industry.",
|
||||
tag: "Executive Recommendation",
|
||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-logo-of-a-major-film-stud-1773445502871-3448ee86.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-luxurious-photograph-of-a-film-studio--1773445502930-a0a9c8c8.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-luxurious-photograph-of-a-film-studio--1773445502930-a0a9c8c8.png?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "testimonial-5",
|
||||
@@ -340,7 +340,7 @@ export default function HomePage() {
|
||||
quote: "Abdullah's insights and coverage add real value to our promotional efforts. His audience is engaged and authentic.",
|
||||
tag: "Marketing Partner",
|
||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-entertainment-company-log-1773445502366-8b369057.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-dynamic-cinematic-photograph-of-a-movi-1773445504116-592f5270.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-dynamic-cinematic-photograph-of-a-movi-1773445504116-592f5270.png?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "testimonial-6",
|
||||
@@ -350,7 +350,7 @@ export default function HomePage() {
|
||||
quote: "An exceptional creator who brings professionalism and passion to entertainment coverage. Highly recommended.",
|
||||
tag: "Festival Partner",
|
||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-film-production-or-entert-1773445502902-7dfd609a.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-sophisticated-photograph-of-a-film-ind-1773445503150-74cd983d.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-sophisticated-photograph-of-a-film-ind-1773445503150-74cd983d.png?_wi=3",
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
|
||||
@@ -47,7 +47,7 @@ export default function PortfolioPage() {
|
||||
category: "Indie Spotlight",
|
||||
title: "Hidden Gems: Best Independent Films You Need to Watch",
|
||||
excerpt: "Curated selection of exceptional independent films from film festivals, showcasing emerging filmmakers and unique storytelling perspectives.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-magazine-cover-or-publica-1773445503478-bf2fd69c.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-magazine-cover-or-publica-1773445503478-bf2fd69c.png?_wi=2",
|
||||
imageAlt: "Independent film feature",
|
||||
authorName: "Abdullah Albalool",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-portrait-of-a-film-and-en-1773445502591-4323962b.png",
|
||||
|
||||
@@ -97,7 +97,7 @@ export default function PressPage() {
|
||||
category: "Featured Interview",
|
||||
title: "Inside the Mind of a Film & Entertainment Content Creator",
|
||||
excerpt: "An exclusive interview discussing my approach to covering premieres, industry events, and creating authentic entertainment content.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-magazine-cover-or-publica-1773445503478-bf2fd69c.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-magazine-cover-or-publica-1773445503478-bf2fd69c.png?_wi=3",
|
||||
imageAlt: "Press feature interview article",
|
||||
authorName: "Entertainment Weekly",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-logo-of-a-major-film-stud-1773445502871-3448ee86.png",
|
||||
@@ -108,7 +108,7 @@ export default function PressPage() {
|
||||
category: "Industry Spotlight",
|
||||
title: "How Creator Partnerships Are Changing Film Promotion",
|
||||
excerpt: "Exploring the role of independent content creators in modern movie marketing and studio collaborations.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-entertainment-news-public-1773445503893-ef7f2fb5.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-entertainment-news-public-1773445503893-ef7f2fb5.png?_wi=2",
|
||||
imageAlt: "Industry news feature article",
|
||||
authorName: "Variety",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-entertainment-company-log-1773445502366-8b369057.png",
|
||||
@@ -119,7 +119,7 @@ export default function PressPage() {
|
||||
category: "Studio Feature",
|
||||
title: "Content Creator Spotlight: Bringing Authenticity to Entertainment Coverage",
|
||||
excerpt: "Featured as a leading independent voice in authentic entertainment journalism and creator partnerships.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-film-and-entertainment-pu-1773445503498-36250997.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-film-and-entertainment-pu-1773445503498-36250997.png?_wi=2",
|
||||
imageAlt: "Creator spotlight feature",
|
||||
authorName: "The Hollywood Reporter",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-film-production-or-entert-1773445502902-7dfd609a.png",
|
||||
@@ -155,7 +155,7 @@ export default function PressPage() {
|
||||
quote: "Abdullah delivers exceptional coverage and authentic audience engagement. His content reaches exactly the demographic we're targeting.",
|
||||
tag: "Studio Partnership",
|
||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-logo-of-a-major-film-stud-1773445502871-3448ee86.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-dynamic-cinematic-photograph-of-a-movi-1773445504116-592f5270.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-dynamic-cinematic-photograph-of-a-movi-1773445504116-592f5270.png?_wi=5",
|
||||
},
|
||||
{
|
||||
id: "testimonial-2",
|
||||
@@ -165,7 +165,7 @@ export default function PressPage() {
|
||||
quote: "The quality and consistency of content coverage is outstanding. Abdullah's audience trusts his opinions, which translates to real engagement.",
|
||||
tag: "Campaign Success",
|
||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-entertainment-company-log-1773445502366-8b369057.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-sophisticated-photograph-of-a-film-ind-1773445503150-74cd983d.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-sophisticated-photograph-of-a-film-ind-1773445503150-74cd983d.png?_wi=5",
|
||||
},
|
||||
{
|
||||
id: "testimonial-3",
|
||||
@@ -175,7 +175,7 @@ export default function PressPage() {
|
||||
quote: "Working with Abdullah is seamless. His professionalism and eye for premium content make him a valuable partner for any campaign.",
|
||||
tag: "Brand Collaboration",
|
||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-professional-film-production-or-entert-1773445502902-7dfd609a.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-cinematic-photograph-of-a-movie-premie-1773445502749-78278c6c.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AubRtyBnt0yv4yRTduMnd743Jv/a-cinematic-photograph-of-a-movie-premie-1773445502749-78278c6c.png?_wi=4",
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
|
||||
Reference in New Issue
Block a user