import { motion } from "framer-motion" import React from "react" import versionData from "../../version.json" import { AIEditingSection } from "./components/AIEditingSection" import { Footer } from "./components/Footer" import { HeroSection } from "./components/HeroSection" import { Navigation } from "./components/Navigation" import { SearchDemo } from "./components/SearchDemo" const App: React.FC = () => { return (
{/* Hero Section */} {/* Demo Component */}
{/* Features Grid */}
{/* Glassmorphism background */}
{/* Border gradient */}
{/* Content */}
🎯

Smart Analysis

AI analyzes trends and suggests the best content strategy for maximum engagement

{/* Glassmorphism background */}
{/* Border gradient */}
{/* Content */}
⚑

Instant Creation

Generate professional videos with trending effects and transitions in seconds

{/* Glassmorphism background */}
{/* Border gradient */}
{/* Content */}
πŸ“ˆ

Viral Optimization

Optimize timing, hashtags, and content format for each social platform

{/* AI Editing Section */} {/* Download Section */}
{/* Background gradient */}
{/* Animated background elements */}

Download for free

Available for all major operating systems

Choose your platform and start creating amazing videos today ⚑

Latest version: v{versionData.version} β€’ Check on GitHub β€’ All releases

{/* Footer */}
) } // ΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ ΠΊΠ½ΠΎΠΏΠΊΠΈ Π·Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ const DownloadButton: React.FC<{ platform: string; icon: string }> = ({ platform }) => { const version = versionData.version // ВСрсия ΠΈΠ· version.json // ΠžΠΏΡ€Π΅Π΄Π΅Π»ΡΠ΅ΠΌ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½Ρ‹ΠΉ ΠΏΡƒΡ‚ΡŒ ΠΊ Ρ„Π°ΠΉΠ»Ρƒ Π² зависимости ΠΎΡ‚ ΠΏΠ»Π°Ρ‚Ρ„ΠΎΡ€ΠΌΡ‹ const getDownloadPath = () => { switch (platform.toLowerCase()) { case "windows": return `timeline-studio_${version}_x64-setup.exe` case "macos": return `timeline-studio_${version}_universal.dmg` case "linux": return `timeline-studio_${version}_amd64.AppImage` default: return `timeline-studio-${platform.toLowerCase()}.zip` } } return (
{platform === "Windows" && ( )} {platform === "macOS" && ( )} {platform === "Linux" && ( )} Download for {platform}
) } export default App