diff --git a/src/app/events/page.tsx b/src/app/events/page.tsx index 4304cea..2da05b9 100644 --- a/src/app/events/page.tsx +++ b/src/app/events/page.tsx @@ -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", }, ]; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..783215e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}