Merge version_2 into main #5
@@ -3,7 +3,7 @@
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import HeroLogoCenter from "@/components/sections/hero/HeroLogoCenter";
|
||||
import HeroLogoCenter from "@/components/sections/hero/HeroLogoCenter/HeroLogoCenter";
|
||||
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||
@@ -12,7 +12,7 @@ import { Sparkles, Film } from "lucide-react";
|
||||
export default function AboutPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Social Spot", id: "/social-spot" },
|
||||
{ name: "Cosmic Monkey", id: "/cosmic-monkey" },
|
||||
@@ -29,10 +29,10 @@ export default function AboutPage() {
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/#about" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Process", href: "/#services" },
|
||||
{ label: "Team", href: "/#about" },
|
||||
{ label: "Contact", href: "/#contact" },
|
||||
{ label: "Team", href: "/about" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -62,7 +62,8 @@ export default function AboutPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Start Your Project", href: "#contact"}}
|
||||
text: "Start Your Project", href: "#contact"
|
||||
}}
|
||||
brandName="TG Entertainment"
|
||||
/>
|
||||
</div>
|
||||
@@ -94,11 +95,17 @@ export default function AboutPage() {
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "01", title: "TG Entertainment", description: "Our flagship full-service creative agency offering strategy, design, production, and AI-augmented workflows for enterprise clients and ambitious brands.", 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 flagship agency"},
|
||||
id: 1,
|
||||
title: "TG Entertainment", description: "Our flagship full-service creative agency offering strategy, design, production, and AI-augmented workflows for enterprise clients and ambitious brands.", 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 flagship agency"
|
||||
},
|
||||
{
|
||||
id: "02", title: "Social Spot", description: "Tailored for startups and SMEs seeking growth-focused social media solutions. Swipe-worthy content, trending reels, and strategic monthly planning.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/vibrant-social-media-content-creation-sh-1773035468629-c86e61a3.png", imageAlt: "Social Spot social media content"},
|
||||
id: 2,
|
||||
title: "Social Spot", description: "Tailored for startups and SMEs seeking growth-focused social media solutions. Swipe-worthy content, trending reels, and strategic monthly planning.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/vibrant-social-media-content-creation-sh-1773035468629-c86e61a3.png", imageAlt: "Social Spot social media content"
|
||||
},
|
||||
{
|
||||
id: "03", title: "Cosmic Monkey Studios", description: "High-end production house specializing in cinematic campaigns, luxury brand visuals, and VFX-driven content for premium clients.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-cinematic-production-still-from-a-high-1773035470369-68ca9538.png", imageAlt: "Cosmic Monkey Studios cinematic production"},
|
||||
id: 3,
|
||||
title: "Cosmic Monkey Studios", description: "High-end production house specializing in cinematic campaigns, luxury brand visuals, and VFX-driven content for premium clients.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-cinematic-production-still-from-a-high-1773035470369-68ca9538.png", imageAlt: "Cosmic Monkey Studios cinematic production"
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
|
||||
@@ -28,12 +28,13 @@ export default function CosmicMonkeyPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Social Spot", id: "/social-spot" },
|
||||
{ name: "Cosmic Monkey", id: "/cosmic-monkey" },
|
||||
]}
|
||||
button={{
|
||||
text: "Start Your Project", href: "#contact"}}
|
||||
text: "Start Your Project", href: "#contact"
|
||||
}}
|
||||
brandName="TG Entertainment"
|
||||
/>
|
||||
</div>
|
||||
@@ -47,16 +48,23 @@ export default function CosmicMonkeyPage() {
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Back to Home", href: "/"},
|
||||
text: "Back to Home", href: "/"
|
||||
},
|
||||
]}
|
||||
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", imageAlt: "Pre-production planning"},
|
||||
id: 1,
|
||||
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", imageAlt: "Professional production"},
|
||||
id: 2,
|
||||
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", imageAlt: "VFX and post-production"},
|
||||
id: 3,
|
||||
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"
|
||||
animationType="slide-up"
|
||||
@@ -71,13 +79,21 @@ export default function CosmicMonkeyPage() {
|
||||
textboxLayout="default"
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Award-Winning", description: "50+ Awards", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-cinematic-production-still-from-a-high-1773035470369-68ca9538.png", imageAlt: "Award-winning"},
|
||||
id: 1,
|
||||
title: "Award-Winning", description: "50+ Awards", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-cinematic-production-still-from-a-high-1773035470369-68ca9538.png", imageAlt: "Award-winning"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Cinematic Quality", description: "Hollywood Standard", 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: "Cinematic quality"},
|
||||
id: 2,
|
||||
title: "Cinematic Quality", description: "Hollywood Standard", 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: "Cinematic quality"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Proven Results", description: "2x ROI Average", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-strategic-planning-visualization-showi-1773035469617-c5565f96.png", imageAlt: "Proven results"},
|
||||
id: 3,
|
||||
title: "Proven Results", description: "2x ROI Average", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-strategic-planning-visualization-showi-1773035469617-c5565f96.png", imageAlt: "Proven results"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Fast Execution", description: "30% Quicker", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sophisticated-visualization-of-ai-augm-1773035469134-2cc7be9e.png", imageAlt: "Fast execution"},
|
||||
id: 4,
|
||||
title: "Fast Execution", description: "30% Quicker", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sophisticated-visualization-of-ai-augm-1773035469134-2cc7be9e.png", imageAlt: "Fast execution"
|
||||
},
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
@@ -91,9 +107,11 @@ export default function CosmicMonkeyPage() {
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{
|
||||
text: "Discuss Your Production", href: "#contact"},
|
||||
text: "Discuss Your Production", href: "#contact"
|
||||
},
|
||||
{
|
||||
text: "View Our Portfolio", href: "/"},
|
||||
text: "View Our Portfolio", href: "/"
|
||||
},
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
@@ -114,10 +132,10 @@ export default function CosmicMonkeyPage() {
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/#about" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Process", href: "/#services" },
|
||||
{ label: "Team", href: "/#about" },
|
||||
{ label: "Contact", href: "/#contact" },
|
||||
{ label: "Team", href: "/about" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
@@ -3,13 +3,12 @@ import { Inter } from "next/font/google";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/providers/themeProvider/ServiceWrapper";
|
||||
import { Tag } from "@/components/shared/Tag";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "TG Entertainment", description: "Human Creativity × AI Efficiency - Premium creative agency"};
|
||||
title: "TG Entertainment", description: "Human Creativity × AI Efficiency - Premium creative agency"
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -19,10 +18,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<body className={inter.className}>
|
||||
<ServiceWrapper>
|
||||
<Tag />
|
||||
{children}
|
||||
</ServiceWrapper>
|
||||
{children}
|
||||
<script
|
||||
async
|
||||
src="https://cdn.jsdelivr.net/npm/lenis@1.1.13/dist/lenis.min.js"
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import HeroLogoCenter from "@/components/sections/hero/HeroLogoCenter";
|
||||
import HeroLogoCenter from "@/components/sections/hero/HeroLogoCenter/HeroLogoCenter";
|
||||
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
||||
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
||||
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
|
||||
@@ -14,7 +14,7 @@ import { Sparkles, Zap, Rocket, Film, Target, TrendingUp, Users, Award, Globe, Q
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Social Spot", id: "/social-spot" },
|
||||
{ name: "Cosmic Monkey", id: "/cosmic-monkey" },
|
||||
@@ -31,10 +31,10 @@ export default function HomePage() {
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/#about" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Process", href: "/#services" },
|
||||
{ label: "Team", href: "/#about" },
|
||||
{ label: "Contact", href: "/#contact" },
|
||||
{ label: "Team", href: "/about" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -64,7 +64,8 @@ export default function HomePage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Start Your Project", href: "#contact"}}
|
||||
text: "Start Your Project", href: "#contact"
|
||||
}}
|
||||
brandName="TG Entertainment"
|
||||
/>
|
||||
</div>
|
||||
@@ -115,13 +116,21 @@ 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", imageAlt: "Strategic planning and brand strategy"},
|
||||
id: 1,
|
||||
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", imageAlt: "Creative design process"},
|
||||
id: 2,
|
||||
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", imageAlt: "Professional production setup"},
|
||||
id: 3,
|
||||
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", imageAlt: "AI creative augmentation"},
|
||||
id: 4,
|
||||
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"
|
||||
animationType="slide-up"
|
||||
@@ -140,11 +149,17 @@ export default function HomePage() {
|
||||
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", imageAlt: "Social media content showcase"},
|
||||
id: 1,
|
||||
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", imageAlt: "Video content creation"},
|
||||
id: 2,
|
||||
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", imageAlt: "Content strategy planning"},
|
||||
id: 3,
|
||||
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"
|
||||
animationType="slide-up"
|
||||
@@ -163,11 +178,17 @@ export default function HomePage() {
|
||||
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", imageAlt: "Pre-production planning"},
|
||||
id: 1,
|
||||
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", imageAlt: "Professional production"},
|
||||
id: 2,
|
||||
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", imageAlt: "VFX and post-production"},
|
||||
id: 3,
|
||||
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"
|
||||
animationType="slide-up"
|
||||
@@ -182,13 +203,21 @@ export default function HomePage() {
|
||||
textboxLayout="default"
|
||||
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: 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: 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: 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"},
|
||||
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}
|
||||
@@ -205,23 +234,23 @@ export default function HomePage() {
|
||||
textboxLayout="default"
|
||||
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", imageAlt: "Sarah Chen, CEO"},
|
||||
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.", 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", imageAlt: "Marcus Rodriguez, Founder"},
|
||||
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.", 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"},
|
||||
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.", 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"
|
||||
},
|
||||
{
|
||||
id: "4", name: "James Sullivan", handle: "CMO, Global Enterprises", testimonial: "Working with TG Entertainment meant strategic thinking combined with cutting-edge execution. They didn't just deliver—they elevated our entire marketing approach.", rating: 5,
|
||||
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: "4", name: "James Sullivan", handle: "CMO, Global Enterprises", testimonial: "Working with TG Entertainment meant strategic thinking combined with cutting-edge execution. They didn't just deliver—they elevated our entire marketing approach.", 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", imageAlt: "Priya Kapoor, Director"},
|
||||
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.", 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", imageAlt: "David Park, Founder"},
|
||||
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.", 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}
|
||||
|
||||
@@ -28,12 +28,13 @@ export default function SocialSpotPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Social Spot", id: "/social-spot" },
|
||||
{ name: "Cosmic Monkey", id: "/cosmic-monkey" },
|
||||
]}
|
||||
button={{
|
||||
text: "Start Your Project", href: "#contact"}}
|
||||
text: "Start Your Project", href: "#contact"
|
||||
}}
|
||||
brandName="TG Entertainment"
|
||||
/>
|
||||
</div>
|
||||
@@ -47,16 +48,23 @@ export default function SocialSpotPage() {
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Back to Home", href: "/"},
|
||||
text: "Back to Home", href: "/"
|
||||
},
|
||||
]}
|
||||
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", imageAlt: "Social media content showcase"},
|
||||
id: 1,
|
||||
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", imageAlt: "Video content creation"},
|
||||
id: 2,
|
||||
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", imageAlt: "Content strategy planning"},
|
||||
id: 3,
|
||||
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"
|
||||
animationType="slide-up"
|
||||
@@ -71,13 +79,21 @@ export default function SocialSpotPage() {
|
||||
textboxLayout="default"
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Fast Turnaround", description: "Weekly Delivery", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/vibrant-social-media-content-creation-sh-1773035468629-c86e61a3.png", imageAlt: "Fast turnaround"},
|
||||
id: 1,
|
||||
title: "Fast Turnaround", description: "Weekly Delivery", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/vibrant-social-media-content-creation-sh-1773035468629-c86e61a3.png", imageAlt: "Fast turnaround"
|
||||
},
|
||||
{
|
||||
id: "2", title: "High Engagement", description: "3x Better CTR", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-strategic-planning-visualization-showi-1773035469617-c5565f96.png", imageAlt: "High engagement"},
|
||||
id: 2,
|
||||
title: "High Engagement", description: "3x Better CTR", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-strategic-planning-visualization-showi-1773035469617-c5565f96.png", imageAlt: "High engagement"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Growth Focused", description: "100% ROI Focus", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-collaborative-creative-team-of-diverse-1773035470076-7f8faaf6.png", imageAlt: "Growth focused"},
|
||||
id: 3,
|
||||
title: "Growth Focused", description: "100% ROI Focus", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-collaborative-creative-team-of-diverse-1773035470076-7f8faaf6.png", imageAlt: "Growth focused"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Startup Mentality", description: "Agile & Flexible", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sophisticated-visualization-of-ai-augm-1773035469134-2cc7be9e.png", imageAlt: "Startup mentality"},
|
||||
id: 4,
|
||||
title: "Startup Mentality", description: "Agile & Flexible", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhBv7evUTHaOIePB7DlawcPUSp/a-sophisticated-visualization-of-ai-augm-1773035469134-2cc7be9e.png", imageAlt: "Startup mentality"
|
||||
},
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
@@ -91,9 +107,11 @@ export default function SocialSpotPage() {
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{
|
||||
text: "Start With Social Spot", href: "#contact"},
|
||||
text: "Start With Social Spot", href: "#contact"
|
||||
},
|
||||
{
|
||||
text: "View Our Work", href: "/"},
|
||||
text: "View Our Work", href: "/"
|
||||
},
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
@@ -114,10 +132,10 @@ export default function SocialSpotPage() {
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/#about" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Process", href: "/#services" },
|
||||
{ label: "Team", href: "/#about" },
|
||||
{ label: "Contact", href: "/#contact" },
|
||||
{ label: "Team", href: "/about" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user