Update src/app/page.tsx

This commit is contained in:
2026-03-09 06:01:50 +00:00
parent d9b55a36b8
commit 98ad6bbd90

View File

@@ -3,38 +3,37 @@
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel";
import AboutMetric from "@/components/sections/about/AboutMetric";
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import HeroLogoCenter from "@/components/sections/hero/HeroLogoCenter";
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Sparkles, Zap, Rocket, Film, Target, TrendingUp, Users, Award, Globe, Quote } from "lucide-react";
export default function HomePage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Social Spot", id: "social-spot" },
{ name: "Cosmic Monkey", id: "cosmic-monkey" },
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Services", id: "#services" },
{ name: "Social Spot", id: "/social-spot" },
{ name: "Cosmic Monkey", id: "/cosmic-monkey" },
];
const footerColumns = [
{
title: "Solutions", items: [
{ label: "TG Entertainment", href: "/" },
{ label: "Social Spot", href: "/#social-spot" },
{ label: "Cosmic Monkey", href: "/#cosmic-monkey" },
{ label: "Social Spot", href: "/social-spot" },
{ label: "Cosmic Monkey", href: "/cosmic-monkey" },
{ label: "Services", href: "/#services" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "About Us", href: "/#about" },
{ label: "Our Process", href: "/#services" },
{ label: "Team", href: "/about" },
{ label: "Team", href: "/#about" },
{ label: "Contact", href: "/#contact" },
],
},
@@ -65,64 +64,50 @@ export default function HomePage() {
<NavbarStyleCentered
navItems={navItems}
button={{
text: "Start Your Project", href: "/contact"}}
text: "Start Your Project", href: "#contact"}}
brandName="TG Entertainment"
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitDoubleCarousel
<HeroLogoCenter
title="Human Creativity × AI Efficiency"
description="We blend strategic creative ingenuity with intelligent AI augmentation to deliver premium content, campaigns, and visuals faster, smarter, and more efficiently than traditional agencies. From startups to enterprises, we're built for the future."
tag="Next-Gen Creative Agency"
tagIcon={Sparkles}
tagAnimation="slide-up"
background={{ variant: "plain" }}
leftCarouselItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-stunning-luxury-automotive-advertiseme-1773035468497-78e1558e.png", imageAlt: "Luxury automotive campaign production"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-premium-hospitality-brand-visual-showi-1773035469305-002a2aa1.png", imageAlt: "Premium hospitality brand visual"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sleek-creative-agency-workspace-with-m-1773035469446-f79fbb53.png?_wi=1", imageAlt: "Creative studio workspace"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-high-end-film-and-video-production-set-1773035468744-d275f092.png?_wi=1", imageAlt: "Professional film production setup"},
]}
rightCarouselItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sophisticated-fashion-brand-campaign-v-1773035469241-7690ec4f.png?_wi=1", imageAlt: "Fashion brand editorial campaign"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-cutting-edge-technology-product-showca-1773035468902-4fe127c8.png", imageAlt: "Technology product showcase"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sophisticated-visualization-of-ai-augm-1773035469134-2cc7be9e.png?_wi=1", imageAlt: "AI-augmented creative process"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-cinematic-production-still-from-a-high-1773035470369-68ca9538.png?_wi=1", imageAlt: "Cinematic production visual"},
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sleek-creative-agency-workspace-with-m-1773035469446-f79fbb53.png"
logoAlt="TG Entertainment Logo"
buttons={[
{ text: "Explore Our Work", href: "/about" },
{ text: "Start a Project", href: "/contact" },
{ text: "Explore Our Work", href: "#services" },
{ text: "Start a Project", href: "#contact" },
]}
buttonAnimation="slide-up"
carouselPosition="right"
/>
</div>
<div id="about" data-section="about">
<AboutMetric
<MetricSplitMediaAbout
title="We are TG Entertainment: A creative agency redefining what's possible when human brilliance meets intelligent automation."
description="From strategic planning to premium execution, we deliver comprehensive creative solutions that combine artistic excellence with AI-powered efficiency."
tag="Our Approach"
tagIcon={Zap}
tagAnimation="slide-up"
metrics={[
{ icon: Zap, label: "Campaigns Launched", value: "500+" },
{ icon: Rocket, label: "Brands Elevated", value: "150+" },
{ icon: Globe, label: "Global Reach", value: "25+Countries" },
{ icon: Award, label: "Industry Awards", value: "75+" },
{ value: "500+", title: "Campaigns Launched" },
{ value: "150+", title: "Brands Elevated" },
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-collaborative-creative-team-of-diverse-1773035470076-7f8faaf6.png"
imageAlt="Creative team collaboration"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="services" data-section="services">
<FeatureCardThree
<FeatureCardEight
title="Our Services"
description="Comprehensive creative solutions designed for modern businesses seeking premium quality with intelligent efficiency."
tag="What We Deliver"
@@ -130,79 +115,80 @@ export default function HomePage() {
tagAnimation="slide-up"
features={[
{
id: "01", title: "Strategy & Branding", description: "AI-informed market analysis, brand positioning, and strategic direction that sets you apart from competitors.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-strategic-planning-visualization-showi-1773035469617-c5565f96.png?_wi=1", imageAlt: "Strategic planning and brand strategy"},
id: "01", title: "Strategy & Branding", description: "AI-informed market analysis, brand positioning, and strategic direction that sets you apart from competitors.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-strategic-planning-visualization-showi-1773035469617-c5565f96.png", imageAlt: "Strategic planning and brand strategy"},
{
id: "02", title: "Design & Creative", description: "Premium visual design, UX/UI, and creative direction optimized for conversions and brand impact.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-collaborative-creative-team-of-diverse-1773035470076-7f8faaf6.png?_wi=1", imageAlt: "Creative design process"},
id: "02", title: "Design & Creative", description: "Premium visual design, UX/UI, and creative direction optimized for conversions and brand impact.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-collaborative-creative-team-of-diverse-1773035470076-7f8faaf6.png", imageAlt: "Creative design process"},
{
id: "03", title: "Production & Execution", description: "World-class film, photography, and digital production with cutting-edge technology and artistic excellence.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-high-end-film-and-video-production-set-1773035468744-d275f092.png?_wi=2", imageAlt: "Professional production setup"},
id: "03", title: "Production & Execution", description: "World-class film, photography, and digital production with cutting-edge technology and artistic excellence.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-high-end-film-and-video-production-set-1773035468744-d275f092.png", imageAlt: "Professional production setup"},
{
id: "04", title: "AI-Augmented Workflows", description: "Intelligent automation that accelerates delivery without compromising creativity or quality.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sophisticated-visualization-of-ai-augm-1773035469134-2cc7be9e.png?_wi=2", imageAlt: "AI creative augmentation"},
id: "04", title: "AI-Augmented Workflows", description: "Intelligent automation that accelerates delivery without compromising creativity or quality.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sophisticated-visualization-of-ai-augm-1773035469134-2cc7be9e.png", imageAlt: "AI creative augmentation"},
]}
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="social-spot-overview" data-section="social-spot-overview">
<FeatureCardThree
<FeatureCardEight
title="Social Spot"
description="The creative spark startups need to stand out. Growth-focused social media solutions that drive engagement and build brands."
tag="For Startups & SMEs"
tagIcon={Rocket}
tagAnimation="slide-up"
buttons={[{ text: "Explore Social Spot", href: "/about" }]}
buttons={[{ text: "Explore Social Spot", href: "/social-spot" }]}
buttonAnimation="slide-up"
features={[
{
id: "01", title: "Swipe-Worthy Content", description: "Thumb-stopping designs and copywriting that captures attention in crowded feeds.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/vibrant-social-media-content-creation-sh-1773035468629-c86e61a3.png?_wi=1", imageAlt: "Social media content showcase"},
id: "01", title: "Swipe-Worthy Content", description: "Thumb-stopping designs and copywriting that captures attention in crowded feeds.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/vibrant-social-media-content-creation-sh-1773035468629-c86e61a3.png", imageAlt: "Social media content showcase"},
{
id: "02", title: "Reels & Short-Form Video", description: "Trending video content, transitions, and formats optimized for viral potential.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sophisticated-fashion-brand-campaign-v-1773035469241-7690ec4f.png?_wi=2", imageAlt: "Video content creation"},
id: "02", title: "Reels & Short-Form Video", description: "Trending video content, transitions, and formats optimized for viral potential.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sophisticated-fashion-brand-campaign-v-1773035469241-7690ec4f.png", imageAlt: "Video content creation"},
{
id: "03", title: "Monthly Content Strategy", description: "Strategic planning, scheduling, and engagement management tailored to your growth goals.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-strategic-planning-visualization-showi-1773035469617-c5565f96.png?_wi=2", imageAlt: "Content strategy planning"},
id: "03", title: "Monthly Content Strategy", description: "Strategic planning, scheduling, and engagement management tailored to your growth goals.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-strategic-planning-visualization-showi-1773035469617-c5565f96.png", imageAlt: "Content strategy planning"},
]}
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="cosmic-monkey-overview" data-section="cosmic-monkey-overview">
<FeatureCardThree
<FeatureCardEight
title="Cosmic Monkey Studios"
description="High-end production meets bold, original ideas. Time to let the ape out of the cage. Premium cinematography and visuals for luxury brands and enterprise clients."
tag="High-End Production"
tagIcon={Film}
tagAnimation="slide-up"
buttons={[{ text: "Explore Cosmic Monkey", href: "/about" }]}
buttons={[{ text: "Explore Cosmic Monkey", href: "/cosmic-monkey" }]}
buttonAnimation="slide-up"
features={[
{
id: "01", title: "Pre-Production", description: "Strategic creative development, storyboarding, and production planning with cinematic vision.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-strategic-discovery-phase-visualizatio-1773035469417-75498901.png?_wi=1", imageAlt: "Pre-production planning"},
id: "01", title: "Pre-Production", description: "Strategic creative development, storyboarding, and production planning with cinematic vision.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-strategic-discovery-phase-visualizatio-1773035469417-75498901.png", imageAlt: "Pre-production planning"},
{
id: "02", title: "Production", description: "Cinematic cinematography, world-class direction, and premium on-set execution.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-high-end-film-and-video-production-set-1773035468744-d275f092.png?_wi=3", imageAlt: "Professional production"},
id: "02", title: "Production", description: "Cinematic cinematography, world-class direction, and premium on-set execution.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-high-end-film-and-video-production-set-1773035468744-d275f092.png", imageAlt: "Professional production"},
{
id: "03", title: "Post-Production & VFX", description: "Color grading, VFX, motion design, and sound—western advertising standards throughout.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-stunning-vfx-and-visual-effects-showca-1773035469368-320e3733.png?_wi=1", imageAlt: "VFX and post-production"},
id: "03", title: "Post-Production & VFX", description: "Color grading, VFX, motion design, and sound—western advertising standards throughout.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-stunning-vfx-and-visual-effects-showca-1773035469368-320e3733.png", imageAlt: "VFX and post-production"},
]}
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="why-choose-us" data-section="why-choose-us">
<MetricCardThree
<FeatureCardEight
title="Why Partner with TG Entertainment"
description="We bring together strategic thinking, creative excellence, and intelligent automation."
description="We bring together strategic thinking, creative excellence, and intelligent automation to deliver results that matter."
textboxLayout="default"
metrics={[
{ id: "1", icon: Target, title: "Premium Quality", value: "Always" },
{ id: "2", icon: Zap, title: "Faster Delivery", value: "40% Quicker" },
{ id: "3", icon: TrendingUp, title: "Better Results", value: "Proven ROI" },
{ id: "4", icon: Users, title: "Expert Team", value: "100+ Creatives" },
features={[
{
id: "1", title: "Premium Quality", description: "Always delivering excellence without compromise.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-high-end-film-and-video-production-set-1773035468744-d275f092.png", imageAlt: "Quality production"},
{
id: "2", title: "Faster Delivery", description: "40% quicker turnaround with AI-augmented workflows.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sophisticated-visualization-of-ai-augm-1773035469134-2cc7be9e.png", imageAlt: "AI efficiency"},
{
id: "3", title: "Better Results", description: "Proven ROI and measurable impact on your brand.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-strategic-planning-visualization-showi-1773035469617-c5565f96.png", imageAlt: "Strategic results"},
{
id: "4", title: "Expert Team", description: "100+ creative professionals dedicated to your success.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-collaborative-creative-team-of-diverse-1773035470076-7f8faaf6.png", imageAlt: "Expert team"},
]}
animationType="slide-up"
useInvertedBackground={true}
@@ -210,21 +196,20 @@ export default function HomePage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
<TestimonialCardSix
title="What Our Clients Say"
description="Hear from brands and businesses that have transformed with TG Entertainment."
tag="Testimonials"
tagIcon={Quote}
tagAnimation="slide-up"
textboxLayout="default"
showRating={true}
testimonials={[
{
id: "1", name: "Sarah Chen", handle: "CEO, TechFlow", testimonial: "TG Entertainment transformed our brand from concept to market in record time. The AI-augmented workflow meant premium quality without the extended timeline. Incredible partners.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/professional-headshot-of-a-confident-fem-1773035467956-f9817eeb.png?_wi=1", imageAlt: "Sarah Chen, CEO"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/professional-headshot-of-a-confident-fem-1773035467956-f9817eeb.png", imageAlt: "Sarah Chen, CEO"},
{
id: "2", name: "Marcus Rodriguez", handle: "Founder, Elevate Creative", testimonial: "Social Spot took our startup's social presence from stagnant to viral. The strategic content and execution were exactly what we needed to scale rapidly.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/professional-headshot-of-a-male-creative-1773035468719-2df96ad5.png?_wi=1", imageAlt: "Marcus Rodriguez, Founder"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/professional-headshot-of-a-male-creative-1773035468719-2df96ad5.png", imageAlt: "Marcus Rodriguez, Founder"},
{
id: "3", name: "Victoria Okafor", handle: "Creative Director, Luxe Brands", testimonial: "Cosmic Monkey Studios delivered a cinematic campaign that won us industry awards. Their understanding of premium production and bold creative direction is unmatched.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/professional-headshot-of-a-female-creati-1773035468053-03320c50.png", imageAlt: "Victoria Okafor, Creative Director"},
@@ -233,10 +218,10 @@ export default function HomePage() {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/professional-headshot-of-a-male-marketin-1773035467882-80e90ae3.png", imageAlt: "James Sullivan, CMO"},
{
id: "5", name: "Priya Kapoor", handle: "Director, Digital Innovation", testimonial: "The AI-augmented workflows reduced our project timelines by 40% without compromising quality. That's the kind of smart partnership we've been searching for.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/professional-headshot-of-a-confident-fem-1773035467956-f9817eeb.png?_wi=2", imageAlt: "Priya Kapoor, Director"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/professional-headshot-of-a-confident-fem-1773035467956-f9817eeb.png", imageAlt: "Priya Kapoor, Director"},
{
id: "6", name: "David Park", handle: "Founder, StartupX", testimonial: "Social Spot's monthly strategy and execution gave us the competitive edge we needed. Finally, a creative partner who gets the startup mentality.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/professional-headshot-of-a-male-creative-1773035468719-2df96ad5.png?_wi=2", imageAlt: "David Park, Founder"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/professional-headshot-of-a-male-creative-1773035468719-2df96ad5.png", imageAlt: "David Park, Founder"},
]}
animationType="slide-up"
useInvertedBackground={false}
@@ -249,20 +234,22 @@ export default function HomePage() {
animationType="entrance-slide"
background={{ variant: "plain" }}
buttons={[
{ text: "Start Your Project", href: "/contact" },
{ text: "Schedule a Consultation", href: "/contact" },
{ text: "Start Your Project", href: "#contact" },
{ text: "Schedule a Consultation", href: "#contact" },
]}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterMedia
logoText="TG Entertainment"
columns={footerColumns}
copyrightText="© 2025 TG Entertainment. All rights reserved. Crafted with creativity and intelligence."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sleek-creative-agency-workspace-with-m-1773035469446-f79fbb53.png"
imageAlt="TG Entertainment Studio"
/>
</div>
</ThemeProvider>
);
}
}