Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-03-19 22:36:26 +00:00
5 changed files with 84 additions and 47 deletions

View File

@@ -111,7 +111,7 @@ export default function AboutPage() {
icon: CheckCircle,
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-modern-film-production-studio-interior-1773959704816-f390f535.png"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-modern-film-production-studio-interior-1773959704816-f390f535.png?_wi=3"
imageAlt="RAYMS Entertainment Studios production facility showcasing professional infrastructure"
mediaAnimation="slide-up"
imagePosition="right"
@@ -138,28 +138,28 @@ export default function AboutPage() {
id: "pre-production",
title: "Pre-Production",
tags: ["Concept Development", "Storyboarding", "Location Scouting"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-film-production-shoot-in--1773959706476-df9d1f0d.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-film-production-shoot-in--1773959706476-df9d1f0d.png?_wi=4",
imageAlt: "Pre-production planning and storyboarding",
},
{
id: "principal-photography",
title: "Principal Photography",
tags: ["Multi-Camera Work", "Lighting Design", "Sound Recording"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-cinematic-film-production-scene-with-p-1773959704944-352b3534.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-cinematic-film-production-scene-with-p-1773959704944-352b3534.png?_wi=2",
imageAlt: "Professional cinematography and principal photography",
},
{
id: "post-production",
title: "Post-Production",
tags: ["Editing", "Color Grading", "VFX & Motion Graphics"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-post-production-editing-suite-with-pro-1773959704689-b8c5264c.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-post-production-editing-suite-with-pro-1773959704689-b8c5264c.png?_wi=3",
imageAlt: "Post-production editing and color grading suite",
},
{
id: "sound-design",
title: "Sound Design & Mix",
tags: ["Audio Production", "Music Composition", "Sound Effects"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-video-editing-and-post-pr-1773959704845-ede4de90.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-video-editing-and-post-pr-1773959704845-ede4de90.png?_wi=3",
imageAlt: "Sound design and audio production facility",
},
]}

View File

@@ -1,27 +1,62 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_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 { Public_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 publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "RAYMS Entertainment Studios | Film Production Asaba",
description: "Premium film production, music videos, and commercial services. Professional cinematography and post-production in Asaba, Delta State.",
keywords: "film production Asaba, music video production, commercial advertising, video editing, professional cinematography, entertainment studios",
metadataBase: new URL("https://raymsent.com"),
alternates: {
canonical: "https://raymsent.com",
},
openGraph: {
title: "RAYMS Entertainment Studios - Professional Film Production",
description: "Transform your creative vision into stunning visual narratives with premium film production services.",
url: "https://raymsent.com",
siteName: "RAYMS Entertainment Studios",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-cinematic-film-production-scene-with-p-1773959704944-352b3534.png",
alt: "RAYMS Entertainment Studios - Professional Film Production",
},
],
},
twitter: {
card: "summary_large_image",
title: "RAYMS Entertainment Studios",
description: "Premium film production, music videos & commercials in Asaba, Nigeria",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-cinematic-film-production-scene-with-p-1773959704944-352b3534.png",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
@@ -31,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script

View File

@@ -104,27 +104,27 @@ export default function HomePage() {
buttonAnimation="slide-up"
mediaItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-cinematic-film-production-scene-with-p-1773959704944-352b3534.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-cinematic-film-production-scene-with-p-1773959704944-352b3534.png?_wi=1",
imageAlt: "Professional film production studio with advanced equipment",
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-dramatic-film-reel-or-movie-production-1773959705204-4f7d4620.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-dramatic-film-reel-or-movie-production-1773959705204-4f7d4620.png?_wi=1",
imageAlt: "Cinematic film production scene with dramatic lighting",
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-music-video-production-scene-with-dyna-1773959704609-74e87b44.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-music-video-production-scene-with-dyna-1773959704609-74e87b44.png?_wi=1",
imageAlt: "Music video production with dynamic creative energy",
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-commercial-advertisement-production-sc-1773959706298-09c65ec4.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-commercial-advertisement-production-sc-1773959706298-09c65ec4.png?_wi=1",
imageAlt: "Professional commercial production shoot",
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-post-production-editing-suite-with-pro-1773959704689-b8c5264c.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-post-production-editing-suite-with-pro-1773959704689-b8c5264c.png?_wi=1",
imageAlt: "Post-production editing suite with color grading",
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-documentary-film-crew-on-location-capt-1773959709247-399f0395.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-documentary-film-crew-on-location-capt-1773959709247-399f0395.png?_wi=1",
imageAlt: "Documentary filmmaking on location",
},
]}
@@ -169,7 +169,7 @@ export default function HomePage() {
icon: Award,
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-modern-film-production-studio-interior-1773959704816-f390f535.png"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-modern-film-production-studio-interior-1773959704816-f390f535.png?_wi=1"
imageAlt="RAYMS Entertainment Studios modern production facility"
mediaAnimation="slide-up"
imagePosition="right"
@@ -202,7 +202,7 @@ export default function HomePage() {
"Short Films",
"Documentaries",
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-film-production-shoot-in--1773959706476-df9d1f0d.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-film-production-shoot-in--1773959706476-df9d1f0d.png?_wi=1",
imageAlt: "Professional film production with multiple cameras and crew",
},
{
@@ -213,7 +213,7 @@ export default function HomePage() {
"Choreography",
"Visual Effects",
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/an-energetic-music-video-production-scen-1773959704562-6940a1ba.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/an-energetic-music-video-production-scen-1773959704562-6940a1ba.jpg?_wi=1",
imageAlt: "Dynamic music video production with creative energy",
},
{
@@ -224,7 +224,7 @@ export default function HomePage() {
"Digital Ads",
"Branded Content",
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-commercial-advertisement--1773959704355-c22e2357.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-commercial-advertisement--1773959704355-c22e2357.png?_wi=1",
imageAlt: "Professional commercial advertising production",
},
{
@@ -235,7 +235,7 @@ export default function HomePage() {
"Sound Design",
"VFX",
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-video-editing-and-post-pr-1773959704845-ede4de90.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-video-editing-and-post-pr-1773959704845-ede4de90.png?_wi=1",
imageAlt: "Professional post-production editing suite",
},
]}
@@ -265,28 +265,28 @@ export default function HomePage() {
id: "project-1",
name: "Feature Film: Journey Within",
price: "Award Winner",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-dramatic-film-reel-or-movie-production-1773959705204-4f7d4620.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-dramatic-film-reel-or-movie-production-1773959705204-4f7d4620.png?_wi=2",
imageAlt: "Feature film production - Journey Within",
},
{
id: "project-2",
name: "Music Video: Neon Dreams",
price: "Multi-Platform",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-music-video-production-scene-with-dyna-1773959704609-74e87b44.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-music-video-production-scene-with-dyna-1773959704609-74e87b44.png?_wi=2",
imageAlt: "Music video production - Neon Dreams",
},
{
id: "project-3",
name: "Commercial: Brand Excellence",
price: "Campaign Winner",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-commercial-advertisement-production-sc-1773959706298-09c65ec4.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-commercial-advertisement-production-sc-1773959706298-09c65ec4.png?_wi=2",
imageAlt: "Commercial production - Brand Excellence",
},
{
id: "project-4",
name: "Documentary: Stories Untold",
price: "Festival Selection",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-documentary-film-crew-on-location-capt-1773959709247-399f0395.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-documentary-film-crew-on-location-capt-1773959709247-399f0395.png?_wi=2",
imageAlt: "Documentary production - Stories Untold",
},
]}
@@ -319,7 +319,7 @@ export default function HomePage() {
quote: "RAYMS Entertainment Studios brought our brand vision to life beautifully. Their creative team understood our goals and executed them flawlessly. Highly recommended for any serious production needs.",
name: "Chioma Okafor",
role: "Brand Director",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-headshot-of-a-confident-b-1773959704069-b6ee9453.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-headshot-of-a-confident-b-1773959704069-b6ee9453.png?_wi=1",
imageAlt: "Chioma Okafor, Brand Director",
},
{
@@ -328,7 +328,7 @@ export default function HomePage() {
quote: "Working with RAYMS on our music video was an incredible experience. They transformed our artistic vision into a stunning visual masterpiece. Their attention to detail is unmatched.",
name: "Tunde Adeleke",
role: "Music Artist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-portrait-of-a-creative-pr-1773959706444-abe9f521.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-portrait-of-a-creative-pr-1773959706444-abe9f521.png?_wi=1",
imageAlt: "Tunde Adeleke, Music Artist",
},
{
@@ -355,7 +355,7 @@ export default function HomePage() {
quote: "RAYMS didn't just produce our documentary; they elevated our entire creative process. Their insights and technical excellence made the final product something we're incredibly proud of.",
name: "Grace Okonkwo",
role: "Documentary Producer",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-headshot-of-a-confident-b-1773959704069-b6ee9453.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-headshot-of-a-confident-b-1773959704069-b6ee9453.png?_wi=2",
imageAlt: "Grace Okonkwo, Documentary Producer",
},
{
@@ -364,7 +364,7 @@ export default function HomePage() {
quote: "Collaborating with RAYMS Entertainment Studios was transformative for our brand. They brought world-class production values to our project while maintaining complete professionalism throughout.",
name: "David Adeyemi",
role: "Creative Director",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-portrait-of-a-creative-pr-1773959706444-abe9f521.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-portrait-of-a-creative-pr-1773959706444-abe9f521.png?_wi=2",
imageAlt: "David Adeyemi, Creative Director",
},
]}

View File

@@ -93,42 +93,42 @@ export default function PortfolioPage() {
id: "project-1",
name: "Feature Film: Journey Within",
price: "Award Winner",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-dramatic-film-reel-or-movie-production-1773959705204-4f7d4620.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-dramatic-film-reel-or-movie-production-1773959705204-4f7d4620.png?_wi=3",
imageAlt: "Feature film production - Journey Within",
},
{
id: "project-2",
name: "Music Video: Neon Dreams",
price: "Multi-Platform",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-music-video-production-scene-with-dyna-1773959704609-74e87b44.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-music-video-production-scene-with-dyna-1773959704609-74e87b44.png?_wi=3",
imageAlt: "Music video production - Neon Dreams",
},
{
id: "project-3",
name: "Commercial: Brand Excellence",
price: "Campaign Winner",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-commercial-advertisement-production-sc-1773959706298-09c65ec4.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-commercial-advertisement-production-sc-1773959706298-09c65ec4.png?_wi=3",
imageAlt: "Commercial production - Brand Excellence",
},
{
id: "project-4",
name: "Documentary: Stories Untold",
price: "Festival Selection",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-documentary-film-crew-on-location-capt-1773959709247-399f0395.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-documentary-film-crew-on-location-capt-1773959709247-399f0395.png?_wi=3",
imageAlt: "Documentary production - Stories Untold",
},
{
id: "project-5",
name: "Corporate Video: Vision 2030",
price: "Strategic Success",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-film-production-shoot-in--1773959706476-df9d1f0d.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-film-production-shoot-in--1773959706476-df9d1f0d.png?_wi=3",
imageAlt: "Corporate video production - Vision 2030",
},
{
id: "project-6",
name: "Promotional: Creative Showcase",
price: "Industry Recognition",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-post-production-editing-suite-with-pro-1773959704689-b8c5264c.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-post-production-editing-suite-with-pro-1773959704689-b8c5264c.png?_wi=2",
imageAlt: "Promotional video production - Creative Showcase",
},
]}

View File

@@ -91,28 +91,28 @@ export default function ServicesPage() {
id: "film-production",
title: "Film Production",
tags: ["Feature Films", "Short Films", "Documentaries"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-film-production-shoot-in--1773959706476-df9d1f0d.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-film-production-shoot-in--1773959706476-df9d1f0d.png?_wi=2",
imageAlt: "Professional film production with multiple cameras and crew",
},
{
id: "music-video",
title: "Music Video Production",
tags: ["Creative Direction", "Choreography", "Visual Effects"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/an-energetic-music-video-production-scen-1773959704562-6940a1ba.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/an-energetic-music-video-production-scen-1773959704562-6940a1ba.jpg?_wi=2",
imageAlt: "Dynamic music video production with creative energy",
},
{
id: "commercial",
title: "Commercial Production",
tags: ["TV Commercials", "Digital Ads", "Branded Content"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-commercial-advertisement--1773959704355-c22e2357.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-commercial-advertisement--1773959704355-c22e2357.png?_wi=2",
imageAlt: "Professional commercial advertising production",
},
{
id: "post-production",
title: "Video Editing & Post-Production",
tags: ["Color Grading", "Sound Design", "VFX"],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-video-editing-and-post-pr-1773959704845-ede4de90.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-professional-video-editing-and-post-pr-1773959704845-ede4de90.png?_wi=2",
imageAlt: "Professional post-production editing suite",
},
]}
@@ -154,7 +154,7 @@ export default function ServicesPage() {
icon: CheckCircle,
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-modern-film-production-studio-interior-1773959704816-f390f535.png"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBPgNchmgCzLY6pwTFusRCw4G6/a-modern-film-production-studio-interior-1773959704816-f390f535.png?_wi=2"
imageAlt="RAYMS Entertainment Studios production facility"
mediaAnimation="slide-up"
imagePosition="left"