Merge version_4 into main

Merge version_4 into main
This commit was merged in pull request #7.
This commit is contained in:
2026-05-28 05:50:32 +00:00

View File

@@ -2,10 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
// Fix for Line 8, Column 10: Correcting the import statement for ButtonExpandHover
import ButtonExpandHover from "@/components/button/ButtonExpandHover";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import { ButtonExpandHover } from '@/components/button/ButtonExpandHover';
export default function UploadTimingOptimizationPage() {
return (
@@ -25,11 +24,16 @@ export default function UploadTimingOptimizationPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", href: "/" },
{ name: "Features", id: "#features" },
{ name: "Tools", href: "/upload-timing-optimization" },
{ name: "Insights", id: "#insights" },
{ name: "FAQ", id: "#faq" },
{
name: "Home", id: "/"}, // Fix for Line 28, Column 31: 'href' changed to 'id'
{
name: "Features", id: "#features"},
{
name: "Tools", id: "/upload-timing-optimization"}, // Fix for Line 30, Column 32: 'href' changed to 'id'
{
name: "Insights", id: "#insights"},
{
name: "FAQ", id: "#faq"},
]}
brandName="Yt Mugi"
button={{
@@ -38,82 +42,15 @@ export default function UploadTimingOptimizationPage() {
/>
</div>
<div id="upload-timing-hero" data-section="upload-timing-hero">
<HeroOverlay
title="Upload Timing Optimization Matrix"
description="Leverage AI to determine the optimal time to publish your YouTube videos for maximum reach and engagement. Analyze audience behavior, competitor uploads, and trend data to schedule your content perfectly."
tag="AI Tool Module"
tagAnimation="opacity"
buttons={[
{
text: "Access the Tool", href: "#tool-module"
}
]}
buttonAnimation="opacity"
imageSrc="http://img.b2bpic.net/free-photo/time-management-concept-close-up-desk-calendar-with-planning-tools-with-selective-focus_187299-72439.jpg"
imageAlt="Upload Timing Optimization Matrix dashboard"
showDimOverlay={true}
showBlur={true}
textPosition="bottom"
/>
</div>
<div id="tool-module" data-section="tool-module" className="py-24 px-4 md:px-8 lg:px-16 container mx-auto">
<div className="text-center mb-12">
<h2 className="text-4xl md:text-5xl font-bold mb-4">Your Upload Timing Optimization Dashboard</h2>
<p className="text-lg md:text-xl text-foreground-secondary max-w-2xl mx-auto">
This section will contain the interactive Upload Timing Optimization Matrix tool.
Here you can input your data, analyze patterns, and get recommendations for your best upload times.
{/* Content for Upload Timing Optimization Page */}
<div id="upload-timing-optimization-section" data-section="upload-timing-optimization-section" className="py-20 px-4 text-center">
<h1 className="text-4xl md:text-5xl font-bold mb-4 text-foreground">
Upload Timing Optimization
</h1>
<p className="text-lg md:text-xl text-muted-foreground max-w-2xl mx-auto mb-8">
Optimize your YouTube upload schedule for maximum reach and engagement using AI-driven insights.
</p>
</div>
<div className="bg-card p-8 rounded-lg shadow-xl border border-border-secondary min-h-[400px] flex items-center justify-center">
<p className="text-foreground-secondary text-center text-xl italic">
[Upload Timing Optimization Matrix UI Placeholder]
<br/>
(e.g., calendar view, audience heatmaps, scheduling recommendations)
</p>
</div>
<div className="flex justify-center mt-12">
<ButtonExpandHover text="Explore Other Tools" href="/" className="px-8 py-3"/>
</div>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/3d-network-data-communications-background-with-plexus-design_1048-17880.jpg"
imageAlt="Abstract tech background"
logoText="Yt Mugi"
columns={[
{
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "Integrations", href: "#" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Careers", href: "#" },
{ label: "Contact", href: "#" },
],
},
{
title: "Resources", items: [
{ label: "Blog", href: "#blog" },
{ label: "Support", href: "#" },
{ label: "Help Center", href: "#faq" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
]}
copyrightText="© 2025 | Yt Mugi. All rights reserved."
/>
<ButtonExpandHover text="Back to Tools" href="/" className="px-6 py-3" />
</div>
</ReactLenis>
</ThemeProvider>