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-20 14:10:15 +00:00
5 changed files with 72 additions and 33 deletions

View File

@@ -47,7 +47,7 @@ export default function AboutPage() {
tag="About Us"
tagIcon={Award}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/press-reporter-fallowing-leads-case_23-2149579746.jpg"
imageSrc="http://img.b2bpic.net/free-photo/press-reporter-fallowing-leads-case_23-2149579746.jpg?_wi=2"
imageAlt="Professional media production team collaboration"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
@@ -118,7 +118,7 @@ export default function AboutPage() {
"Continuous improvement and innovation in our craft",
"Attention to detail that transforms good work into exceptional work",
],
imageSrc: "http://img.b2bpic.net/free-photo/sport-news-with-professional-recording-side-view_23-2149900289.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/sport-news-with-professional-recording-side-view_23-2149900289.jpg?_wi=2",
imageAlt: "Professional excellence in production",
},
{
@@ -129,7 +129,7 @@ export default function AboutPage() {
"Your success is our success",
"Open communication and transparent processes throughout every engagement",
],
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361573.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361573.jpg?_wi=2",
imageAlt: "Collaborative team partnership",
},
{
@@ -140,7 +140,7 @@ export default function AboutPage() {
"Creative problem-solving for unique institutional challenges",
"Bringing fresh perspectives to educational narratives",
],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-talking-radio-station_23-2148802327.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-talking-radio-station_23-2148802327.jpg?_wi=2",
imageAlt: "Innovative media solutions",
},
]}

View File

@@ -72,7 +72,7 @@ export default function ContactPage() {
tag: "Excellence",
avatarSrc: "http://img.b2bpic.net/free-photo/young-business-woman-white-background-business-job_185193-110285.jpg",
avatarAlt: "Dr. Sarah Mitchell headshot",
imageSrc: "http://img.b2bpic.net/free-photo/brunette-businesswoman-reading-document_23-2148141724.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/brunette-businesswoman-reading-document_23-2148141724.jpg?_wi=2",
imageAlt: "School administration office professional environment",
},
{
@@ -84,7 +84,7 @@ export default function ContactPage() {
tag: "Professional",
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-elegant-bearded-man-dressed-wool-jacket-bow-tie_613910-3110.jpg",
avatarAlt: "James Rodriguez headshot",
imageSrc: "http://img.b2bpic.net/free-photo/hispanic-business-woman-smiling-camera-sitting-couch-typing-computer-while-diverse-colleagues-working-background-multiethnic-coworkers-analysing-startup-financial-reports-modern-office_482257-13476.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hispanic-business-woman-smiling-camera-sitting-couch-typing-computer-while-diverse-colleagues-working-background-multiethnic-coworkers-analysing-startup-financial-reports-modern-office_482257-13476.jpg?_wi=2",
imageAlt: "Communications director marketing office",
},
{
@@ -96,7 +96,7 @@ export default function ContactPage() {
tag: "Innovation",
avatarSrc: "http://img.b2bpic.net/free-photo/asian-beauty-office-workplace_1098-17712.jpg",
avatarAlt: "Emily Chen headshot",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-using-her-mobile-phone-office_1301-3794.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-using-her-mobile-phone-office_1301-3794.jpg?_wi=2",
imageAlt: "Social media marketing strategy planning",
},
]}

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Raleway } 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 { Raleway } 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 raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Premium School Media Agency | Professional Video Production",
description: "MediaVision Academy specializes in professional media production for schools. Video production, live streaming, photography, and content creation tailored for educational institutions.",
keywords: "school media production, educational video, live streaming, content creation, professional photography",
metadataBase: new URL("https://mediavisionacademy.com"),
alternates: {
canonical: "https://mediavisionacademy.com",
},
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Premium School Media Agency | MediaVision Academy",
description: "Transform your school's narrative with professional media production and content creation services.",
url: "https://mediavisionacademy.com",
siteName: "MediaVision Academy",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/medium-shot-people-talking-radio-station_23-2148802327.jpg",
alt: "Professional media production for schools",
},
],
},
twitter: {
card: "summary_large_image",
title: "Premium School Media Agency | MediaVision Academy",
description: "Professional media production and content creation for educational institutions.",
images: ["http://img.b2bpic.net/free-photo/medium-shot-people-talking-radio-station_23-2148802327.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -59,7 +59,7 @@ export default function HomePage() {
carouselItems={[
{
id: "carousel-1",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-talking-radio-station_23-2148802327.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-talking-radio-station_23-2148802327.jpg?_wi=1",
imageAlt: "Professional video production studio setup",
},
{
@@ -69,7 +69,7 @@ export default function HomePage() {
},
{
id: "carousel-3",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361573.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361573.jpg?_wi=1",
imageAlt: "Educational media production classroom",
},
{
@@ -101,7 +101,7 @@ export default function HomePage() {
tag="Our Story"
tagIcon={Award}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/press-reporter-fallowing-leads-case_23-2149579746.jpg"
imageSrc="http://img.b2bpic.net/free-photo/press-reporter-fallowing-leads-case_23-2149579746.jpg?_wi=1"
imageAlt="Professional media production team collaboration"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
@@ -135,7 +135,7 @@ export default function HomePage() {
"Multi-camera setups and cinematic storytelling",
"4K and broadcast-ready deliverables",
],
imageSrc: "http://img.b2bpic.net/free-photo/sport-news-with-professional-recording-side-view_23-2149900289.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/sport-news-with-professional-recording-side-view_23-2149900289.jpg?_wi=1",
imageAlt: "Professional video camera 4k production",
},
{
@@ -146,7 +146,7 @@ export default function HomePage() {
"Editorial calendar planning and execution",
"Multi-platform content distribution",
],
imageSrc: "http://img.b2bpic.net/free-photo/copy-space-calendar-cyber-monday-concept_23-2148670023.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/copy-space-calendar-cyber-monday-concept_23-2148670023.jpg?_wi=1",
imageAlt: "Digital marketing content strategy planning",
},
{
@@ -157,7 +157,7 @@ export default function HomePage() {
"Multi-platform streaming capabilities",
"Interactive audience engagement tools",
],
imageSrc: "http://img.b2bpic.net/free-photo/female-student-using-sound-mixer_107420-64841.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-student-using-sound-mixer_107420-64841.jpg?_wi=1",
imageAlt: "Live streaming broadcast control room operation",
},
{
@@ -168,7 +168,7 @@ export default function HomePage() {
"Candid and formal portrait sessions",
"Rapid turnaround digital delivery",
],
imageSrc: "http://img.b2bpic.net/free-photo/female-photographer-blurred-models_23-2148565543.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-photographer-blurred-models_23-2148565543.jpg?_wi=1",
imageAlt: "Professional event photographer working",
},
{
@@ -179,7 +179,7 @@ export default function HomePage() {
"Professional sound design and mixing",
"Animation and motion graphics",
],
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-lifestyle-blogger-girl-records-video-her-camera-social-media-shows_1258-281864.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-lifestyle-blogger-girl-records-video-her-camera-social-media-shows_1258-281864.jpg?_wi=1",
imageAlt: "Video editor color grading software",
},
{
@@ -190,7 +190,7 @@ export default function HomePage() {
"Technical skills development",
"Creative storytelling techniques",
],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-learning-language-work_23-2149300729.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-learning-language-work_23-2149300729.jpg?_wi=1",
imageAlt: "Media production workshop training session",
},
]}
@@ -274,7 +274,7 @@ export default function HomePage() {
tag: "Excellence",
avatarSrc: "http://img.b2bpic.net/free-photo/young-business-woman-white-background-business-job_185193-110285.jpg",
avatarAlt: "Dr. Sarah Mitchell headshot",
imageSrc: "http://img.b2bpic.net/free-photo/brunette-businesswoman-reading-document_23-2148141724.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/brunette-businesswoman-reading-document_23-2148141724.jpg?_wi=1",
imageAlt: "School administration office professional environment",
},
{
@@ -286,7 +286,7 @@ export default function HomePage() {
tag: "Professional",
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-elegant-bearded-man-dressed-wool-jacket-bow-tie_613910-3110.jpg",
avatarAlt: "James Rodriguez headshot",
imageSrc: "http://img.b2bpic.net/free-photo/hispanic-business-woman-smiling-camera-sitting-couch-typing-computer-while-diverse-colleagues-working-background-multiethnic-coworkers-analysing-startup-financial-reports-modern-office_482257-13476.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hispanic-business-woman-smiling-camera-sitting-couch-typing-computer-while-diverse-colleagues-working-background-multiethnic-coworkers-analysing-startup-financial-reports-modern-office_482257-13476.jpg?_wi=1",
imageAlt: "Communications director marketing office",
},
{
@@ -298,7 +298,7 @@ export default function HomePage() {
tag: "Innovation",
avatarSrc: "http://img.b2bpic.net/free-photo/asian-beauty-office-workplace_1098-17712.jpg",
avatarAlt: "Emily Chen headshot",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-using-her-mobile-phone-office_1301-3794.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-using-her-mobile-phone-office_1301-3794.jpg?_wi=1",
imageAlt: "Social media marketing strategy planning",
},
{

View File

@@ -61,7 +61,7 @@ export default function ServicesPage() {
"4K and broadcast-ready deliverables for all platforms",
"Concept development through final delivery",
],
imageSrc: "http://img.b2bpic.net/free-photo/sport-news-with-professional-recording-side-view_23-2149900289.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/sport-news-with-professional-recording-side-view_23-2149900289.jpg?_wi=3",
imageAlt: "Professional video camera 4k production",
},
{
@@ -73,7 +73,7 @@ export default function ServicesPage() {
"Multi-platform content distribution and management",
"Audience analysis and performance metrics",
],
imageSrc: "http://img.b2bpic.net/free-photo/copy-space-calendar-cyber-monday-concept_23-2148670023.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/copy-space-calendar-cyber-monday-concept_23-2148670023.jpg?_wi=2",
imageAlt: "Digital marketing content strategy planning",
},
{
@@ -85,7 +85,7 @@ export default function ServicesPage() {
"Interactive audience engagement features and moderation",
"Professional technical support throughout events",
],
imageSrc: "http://img.b2bpic.net/free-photo/female-student-using-sound-mixer_107420-64841.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-student-using-sound-mixer_107420-64841.jpg?_wi=2",
imageAlt: "Live streaming broadcast control room operation",
},
{
@@ -97,7 +97,7 @@ export default function ServicesPage() {
"Rapid turnaround digital delivery with professional editing",
"Unlimited shots with comprehensive coverage",
],
imageSrc: "http://img.b2bpic.net/free-photo/female-photographer-blurred-models_23-2148565543.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-photographer-blurred-models_23-2148565543.jpg?_wi=2",
imageAlt: "Professional event photographer working",
},
{
@@ -109,7 +109,7 @@ export default function ServicesPage() {
"Animation and motion graphics for compelling visuals",
"Multi-version editing for various platforms and formats",
],
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-lifestyle-blogger-girl-records-video-her-camera-social-media-shows_1258-281864.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-lifestyle-blogger-girl-records-video-her-camera-social-media-shows_1258-281864.jpg?_wi=2",
imageAlt: "Video editor color grading software",
},
{
@@ -121,7 +121,7 @@ export default function ServicesPage() {
"Creative storytelling techniques and narrative development",
"Equipment operation and best practices certification",
],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-learning-language-work_23-2149300729.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-learning-language-work_23-2149300729.jpg?_wi=2",
imageAlt: "Media production workshop training session",
},
]}